summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-14 05:35:21 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-14 05:35:21 +0000
commita28d1eff6534328cae5363bbf0cc26cd0a18b948 (patch)
tree846b20ae8ec12c856eca10bcf108f00646e0fd16 /NEWS
parentd551b78d4ad27c1c9a4026d11896d4630a1ffed8 (diff)
* proc.c (rb_mod_define_method): now they return the symbols of the
defined methods, not the methods/procs themselves. [ruby-dev:42151] [Feature #3753] * NEWS: documents about above change and def-expr (see r42337). * test/ruby/test_module.rb: tests about above change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42551 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index a3b560962a..c823acf4b4 100644
--- a/NEWS
+++ b/NEWS
@@ -22,6 +22,8 @@ with all sufficient information, see the ChangeLog file.
* "42ri" and "3.14ri" are evaluated as Complex(0, 42r) and Complex(0, 3.14r),
respectively.
+* def-expr now returns the symbol of its name instead of nil.
+
=== Core classes updates (outstanding ones only)
* Binding
@@ -101,6 +103,10 @@ with all sufficient information, see the ChangeLog file.
* The ancestors of a singleton class now include singleton classes,
in particular itself.
+* Module#define_method and Object#define_singleton_method
+ * Now they return the symbols of the defined methods, not the methods/procs
+ themselves.
+
* Numeric#quo
* Raises TypeError instead of ArgumentError if the receiver doesn't have
to_r method.