mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
stop undef DRbObject#to_a
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
29f163f184
commit
29696a1738
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Mar 18 17:46:35 2004 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
|
||||||
|
|
||||||
|
* lib/drb/drb.rb: do not undef :to_a.
|
||||||
|
|
||||||
Thu Mar 18 15:27:25 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Thu Mar 18 15:27:25 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* eval.c: remove specialized version of rb_Array(). use simple
|
* eval.c: remove specialized version of rb_Array(). use simple
|
||||||
|
|
|
@ -1000,7 +1000,7 @@ module DRb
|
||||||
end
|
end
|
||||||
|
|
||||||
undef :to_s
|
undef :to_s
|
||||||
undef :to_a
|
undef :to_a if respond_to?(:respond_to)
|
||||||
undef :respond_to?
|
undef :respond_to?
|
||||||
|
|
||||||
# Routes method calls to the referenced object.
|
# Routes method calls to the referenced object.
|
||||||
|
|
Loading…
Reference in a new issue