summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-13 16:05:00 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-13 16:05:00 +0000
commit4349b42e82ff95fab9d66dd54686bf76b12a5dba (patch)
tree38c8fd1538604636edf513010af41898668dd82b /NEWS
parent23473d1f9fc33151f0d5804e0cca824794a0bfe6 (diff)
Mention Kernel#respond_to?.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34584 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 32480e014f..116b34a2a3 100644
--- a/NEWS
+++ b/NEWS
@@ -23,6 +23,8 @@ with all sufficient information, see the ChangeLog file.
* incompatible changes:
* system() and exec() closes non-standard file descriptors
(The default of :close_others option is changed to true by default.)
+ * respond_to? against a protected method now returns false unless
+ the second argument is true.
* Signal
* incompatible changes:
@@ -72,3 +74,6 @@ with all sufficient information, see the ChangeLog file.
Also, the close-on-exec flag is set by default for all new file descriptors.
This means file descriptors doesn't inherit to spawned process unless
explicitly requested such as system(..., fd=>fd).
+
+ * Kernel#respond_to? against a protected method now returns false
+ unless the second argument is true.