Project

General

Profile

Actions

Bug #6285

closed

Documents of IO#read, IO#readpartial, etc. should describe how they are executed when second argument is not empty String

Added by nobuoka (yu nobuoka) about 12 years ago. Updated about 12 years ago.

Status:
Closed
Target version:
-
ruby -v:
ruby 2.0.0dev (2012-04-12 trunk 35312) [x86_64-linux]
Backport:
[ruby-core:44314]

Description

IO#read, IO#readpartial, IO#read_nonblock, and IO#sysread methods can receive a String object as second argument ((|outbuf|)). If it is present, it will receive the data. This is documented.

So, when I pass the empty String object to the method, it is expected that the object contains the data after the method is executed.

r,w = IO.pipe
w << 'abcd'
w.close
r.read( 4, buf = '' )
buf #=> 'abcd'

However, when I pass the not empty String object to the method as second argument, what happen?

r,w = IO.pipe
w << 'abcd'
w.close
r.read( 4, buf = '012345' )
buf #=> 'abcd'? or 'abcd45'? or '012345abcd'?

In current implementation, the ((|outbuf|)) contain only the received data after the method is executed even though it is not empty at the beginning. I think it should be documented.

The same applies to ARGF.read, ARGF.readpartial, StringIO#read, StringIO#readpartial, StringIO#sysread, StringIO#read_nonblock methods.

I wrote documents and tests. Please see attached file.


Files

__diff__.txt (8.03 KB) __diff__.txt nobuoka (yu nobuoka), 04/13/2012 02:47 AM
Actions

Also available in: Atom PDF

Like0
Like0Like0