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

ruby-changes:24189

From: kazu <ko1@a...>
Date: Wed, 27 Jun 2012 23:18:50 +0900 (JST)
Subject: [ruby-changes:24189] kazu:r36240 (trunk): NotImplementError is not exist.

kazu	2012-06-27 23:18:26 +0900 (Wed, 27 Jun 2012)

  New Revision: 36240

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

  Log:
    NotImplementError is not exist.
    
    * lib/racc/parser.rb: NotImplementError is not exist.
    * lib/irb/output-method.rb (IRB::OutputMethod#print): ditto.

  Modified files:
    trunk/ChangeLog
    trunk/lib/irb/output-method.rb
    trunk/lib/racc/parser.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 36239)
+++ ChangeLog	(revision 36240)
@@ -1,3 +1,9 @@
+Wed Jun 27 21:28:59 2012  Kazuhiro NISHIYAMA  <zn@m...>
+
+	* lib/racc/parser.rb: NotImplementError is not exist.
+
+	* lib/irb/output-method.rb (IRB::OutputMethod#print): ditto.
+
 Wed Jun 27 21:31:13 2012  Nobuyoshi Nakada  <nobu@r...>
 
 	* class.c (rb_prepend_module): ancestors of prepending module also
Index: lib/irb/output-method.rb
===================================================================
--- lib/irb/output-method.rb	(revision 36239)
+++ lib/irb/output-method.rb	(revision 36240)
@@ -19,7 +19,7 @@
     @RCS_ID='-$Id$-'
 
     def print(*opts)
-      IRB.fail NotImplementError, "print"
+      IRB.fail NotImplementedError, "print"
     end
 
     def printn(*opts)
Index: lib/racc/parser.rb
===================================================================
--- lib/racc/parser.rb	(revision 36239)
+++ lib/racc/parser.rb	(revision 36240)
@@ -11,10 +11,6 @@
 # without restriction.
 #
 
-unless defined?(NotImplementedError)
-  NotImplementedError = NotImplementError
-end
-
 module Racc
   class ParseError < StandardError; end
 end

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

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