Actions
Bug #2469
closedDifference behavior of IO#read_nonblock and #read between 1.8 and 1.9
Description
=begin
The following code doesn't finish on ruby 1.9 (both 1.9.1 and 1.9.2dev), while finishes with Errno::EAGAIN on ruby 1.8.7.
read, write = IO.pipe
write << 'hello'
read.read_nonblock(5)
read.read(5)
I checked it on i386-darwin9.8.0 and i686-linux.
(This code is extracted from spec/rubyspec/core/io/read_nonblock_spec.rb)
=end
Updated by ujihisa (Tatsuhiro Ujihisa) almost 15 years ago
- Status changed from Assigned to Closed
- % Done changed from 0 to 100
Actions
Like0
Like0