diff options
author | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-01-23 20:05:42 +0000 |
---|---|---|
committer | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-01-23 20:05:42 +0000 |
commit | f031aec4233d7a6d4622c048abed3e86eb5dd6c2 (patch) | |
tree | 8bd6be964f086a3767e86cddb79ac141f80d945f | |
parent | ce0ed2e04e822510e9de5ecc0308d145fd32b65d (diff) |
* NEWS: List Proc#== removal
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38912 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | NEWS | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -124,6 +124,11 @@ with all sufficient information, see the ChangeLog file. * added method: * added nil.to_h which returns {} + * Proc + * incompatible change: + * removed Proc#== so two procs are == only when they are + the same object. + * Process * added method: * added getsid for getting session id (unix only). @@ -423,6 +428,11 @@ with all sufficient information, see the ChangeLog file. These methods are deprecated in favor of each_line, each_byte, each_char and each_codepoint. + * Proc#== + + This method was removed. Two procs are == only when they are + the same object. + * Signal.trap See above. |