diff --git a/ChangeLog b/ChangeLog index 0bbb864ade..0e755578d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Aug 1 23:04:49 2010 Tanaka Akira + + * lib/pp.rb: describe superclasses explicitly. + Sun Aug 1 23:04:35 2010 Nobuyoshi Nakada * string.c (rb_str_modify_expand, rb_str_resize): get rid of @@ -270,7 +274,7 @@ Thu Jul 22 17:33:47 2010 Yukihiro Matsumoto Thu Jul 22 20:12:56 2010 Yusuke Endoh - * thread_pthread.c (get_stack): fix memory leak; pthread_attr_destory + * thread_pthread.c (get_stack): fix memory leak; pthread_attr_destroy must be called even when pthread_getattr_np is used. [ruby-core:31269] @@ -310,7 +314,7 @@ Thu Jul 22 03:02:55 2010 Eric Hodel Wed Jul 21 23:07:11 2010 Nobuyoshi Nakada - * template/fake.rb.in: get rid of embeding an absolute path. + * template/fake.rb.in: get rid of embedding an absolute path. Wed Jul 21 15:22:17 2010 Evan Phoenix @@ -396,7 +400,7 @@ Tue Jul 20 12:50:37 2010 Nobuyoshi Nakada Tue Jul 20 12:27:56 2010 Nobuyoshi Nakada * lib/fileutils.rb (FileUtils::Entry_#copy): check file name - spearator boundary. [ruby-core:31360] + separator boundary. [ruby-core:31360] Mon Jul 19 18:34:12 2010 Tanaka Akira @@ -537,7 +541,7 @@ Wed Jul 14 20:23:08 2010 Nobuyoshi Nakada Wed Jul 14 18:18:05 2010 NARUSE, Yui * regexec.c (match_at): add end point to enclen's argument. - This only effect on compilinig with -DONIG_DEBUG_MATCH. + This only effect on compiling with -DONIG_DEBUG_MATCH. Tue Jul 13 21:34:17 2010 Nobuyoshi Nakada diff --git a/lib/pp.rb b/lib/pp.rb index cda282448b..56d726dc7d 100644 --- a/lib/pp.rb +++ b/lib/pp.rb @@ -396,7 +396,7 @@ class Range end end -class File +class File < IO class Stat def pretty_print(q) require 'etc.so' @@ -503,7 +503,7 @@ class MatchData end end -class Object +class Object < BasicObject include PP::ObjectMixin end