1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

NotImplementError is not exist.

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

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36240 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2012-06-27 14:18:26 +00:00
parent 3e96f56f8a
commit c686986220
3 changed files with 7 additions and 5 deletions

View file

@ -1,3 +1,9 @@
Wed Jun 27 21:28:59 2012 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* 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@ruby-lang.org> Wed Jun 27 21:31:13 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
* class.c (rb_prepend_module): ancestors of prepending module also * class.c (rb_prepend_module): ancestors of prepending module also

View file

@ -19,7 +19,7 @@ module IRB
@RCS_ID='-$Id$-' @RCS_ID='-$Id$-'
def print(*opts) def print(*opts)
IRB.fail NotImplementError, "print" IRB.fail NotImplementedError, "print"
end end
def printn(*opts) def printn(*opts)

View file

@ -11,10 +11,6 @@
# without restriction. # without restriction.
# #
unless defined?(NotImplementedError)
NotImplementedError = NotImplementError
end
module Racc module Racc
class ParseError < StandardError; end class ParseError < StandardError; end
end end