[issue6586] Documentation of os.write and os.read are inaccurate.

2009-07-29 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r74254. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Py

[issue6586] Documentation of os.write and os.read are inaccurate.

2009-07-27 Thread Chris Liechti
New submission from Chris Liechti : Documentation of os.write and os.read are inaccurate, it states that the methods work with 'str' (or strings), which is wrong. - os.write expects an instance of bytes or buffer - os.read returns an instance of bytes The implementation is OK, it fits well with