reject :instance_eval, :class_eval, :module_eval [druby-ja:117]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7924 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
seki 2005-02-08 14:51:06 +00:00
parent 2c685f1681
commit 3d7177422d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Feb 8 23:48:36 2005 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
* lib/drb/drb.rb: reject :instance_eval, :class_eval, :module_eval
[druby-ja:117]
Tue Feb 8 22:38:28 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* keywords, parse.y: separate EXPR_VALUE from EXPR_BEG.

View File

@ -1395,7 +1395,7 @@ module DRb
#
# These methods are not callable via dRuby.
INSECURE_METHOD = [
:__send__
:__send__, :instance_eval, :module_eval, :class_eval
]
# Has a method been included in the list of insecure methods?