1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[DOC] Update NEWS about close_others [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64405 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2018-08-17 04:00:09 +00:00
parent 6f63671feb
commit 6cd8896bfa
2 changed files with 5 additions and 2 deletions

4
NEWS
View file

@ -102,6 +102,10 @@ with all sufficient information, see the ChangeLog file or Redmine
* Kernel.#system takes :exception option to raise an exception on
failure. [Feature #14386]
* incompatible changes:
* system() and exec() do not close non-standard file descriptors
(The default of :close_others option is changed to false by default.)
* KeyError
* KeyError#initialize accepts :receiver and :key options to set receiver and key in Ruby code. [Feature #14313]

View file

@ -94,7 +94,7 @@ with all sufficient information, see the ChangeLog file.
required caller size.
* Kernel#to_enum and enum_for accept a block for lazy size evaluation.
* incompatible changes:
* system() and exec() closes non-standard file descriptors
* system() and exec() close 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.
@ -528,4 +528,3 @@ with all sufficient information, see the ChangeLog file.
* NUM2SHORT() and NUM2USHORT() added. They are similar to NUM2INT, but short.
* rb_newobj_of() and NEWOBJ_OF() added. They create a new object of a given class.