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

NEWS: make precise the note of r53188

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53190 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-12-18 08:16:02 +00:00
parent 34c97eaaba
commit 66cfd1310c
2 changed files with 4 additions and 3 deletions

View file

@ -3,8 +3,8 @@ Fri Dec 18 16:54:38 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/stringio/stringio.c (strio_set_encoding): add StringIO's own * ext/stringio/stringio.c (strio_set_encoding): add StringIO's own
encoding and separate it from the buffer string to override the encoding and separate it from the buffer string to override the
encoding of string when reading. [ruby-core:72189] [Bug #11827] encoding of string when reading. [ruby-core:72189] [Bug #11827]
note that setting the encoding of its buffer string may cause note that setting the encoding of its buffer string directly
unpredictable behavior. without StringIO#set_encoding may cause unpredictable behavior.
Fri Dec 18 16:50:35 2015 Koichi Sasada <ko1@atdot.net> Fri Dec 18 16:50:35 2015 Koichi Sasada <ko1@atdot.net>

3
NEWS
View file

@ -242,7 +242,8 @@ with all sufficient information, see the ChangeLog file.
* StringIO * StringIO
* In read-only mode, StringIO#set_encoding no longer sets the encoding * In read-only mode, StringIO#set_encoding no longer sets the encoding
of its buffer string. Setting the encoding of the string directly of its buffer string. Setting the encoding of the string directly
may cause unpredictable behavior. [Bug #11827] without StringIO#set_encoding may cause unpredictable behavior now.
[Bug #11827]
* timeout * timeout
* Object#timeout is now warned as deprecated when called. * Object#timeout is now warned as deprecated when called.