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

* NEWS: add IO#autoclose=, IO#autoclose?, IO#codepoints, IO#each_codepoint.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27043 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2010-03-25 08:23:17 +00:00
parent b3a039a2cb
commit 21f56f6de9
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Thu Mar 25 17:21:49 2010 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* NEWS: add IO#autoclose=, IO#autoclose?, IO#codepoints,
IO#each_codepoint.
Thu Mar 25 14:50:00 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* win32/win32.c (rb_w32_{read,write}): fix handle leaks. based on

4
NEWS
View file

@ -82,7 +82,11 @@ with all sufficient information, see the ChangeLog file.
* IO
* new method:
* IO#autoclose=
* IO#autoclose?
* IO#fdatasync
* IO#codepoints
* IO#each_codepoint
* extended methods:
* IO.pipe can take a block.