Message467

Author bckfnn
Recipients
Date 2001-11-13.18:52:54
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
When reading a file opened with the 'b' flag on unix 
cause any CR character to be removed from data.

This does not match the behaviour of CPython.

>>> f = open("foo", "w")
>>> f.write("abc\r\n")
>>> f.close()
>>> f = open("foo")
>>> f.readline()
'abc\n'
>>>
History
Date User Action Args
2008-02-20 17:16:56adminlinkissue481404 messages
2008-02-20 17:16:56admincreate