[前][次][番号順一覧][スレッド一覧]

ruby-changes:16833

From: akr <ko1@a...>
Date: Sun, 1 Aug 2010 23:10:01 +0900 (JST)
Subject: [ruby-changes:16833] Ruby:r28828 (trunk): * lib/pp.rb: describe superclasses explicitly.

akr	2010-08-01 23:09:40 +0900 (Sun, 01 Aug 2010)

  New Revision: 28828

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28828

  Log:
    * lib/pp.rb: describe superclasses explicitly.

  Modified files:
    trunk/ChangeLog
    trunk/lib/pp.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 28827)
+++ ChangeLog	(revision 28828)
@@ -1,3 +1,7 @@
+Sun Aug  1 23:04:49 2010  Tanaka Akira  <akr@f...>
+
+	* lib/pp.rb: describe superclasses explicitly.
+
 Sun Aug  1 23:04:35 2010  Nobuyoshi Nakada  <nobu@r...>
 
 	* string.c (rb_str_modify_expand, rb_str_resize): get rid of
@@ -270,7 +274,7 @@
 
 Thu Jul 22 20:12:56 2010  Yusuke Endoh  <mame@t...>
 
-	* 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 @@
 
 Wed Jul 21 23:07:11 2010  Nobuyoshi Nakada  <nobu@r...>
 
-	* 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 <evan@f...>
 
@@ -396,7 +400,7 @@
 Tue Jul 20 12:27:56 2010  Nobuyoshi Nakada  <nobu@r...>
 
 	* 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  <akr@f...>
 
@@ -537,7 +541,7 @@
 Wed Jul 14 18:18:05 2010  NARUSE, Yui  <naruse@r...>
 
 	* 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  <nobu@r...>
 
Index: lib/pp.rb
===================================================================
--- lib/pp.rb	(revision 28827)
+++ lib/pp.rb	(revision 28828)
@@ -396,7 +396,7 @@
   end
 end
 
-class File
+class File < IO
   class Stat
     def pretty_print(q)
       require 'etc.so'
@@ -503,7 +503,7 @@
   end
 end
 
-class Object
+class Object < BasicObject
   include PP::ObjectMixin
 end
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]