This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients alexandre.vassalotti, pitrou
Date 2009-02-14.22:36:17
SpamBayes Score 0.00045662833
Marked as misclassified No
Message-id <1234650978.85.0.656093494146.issue5265@psf.upfronthosting.co.za>
In-reply-to
Content
This one is a bit strange:

>>> f = io.StringIO("a\r\nb\r\n", newline=None)
>>> f.read()
'a\nb\n'
>>> f = io.StringIO("a\r\nb\r\n", newline=None)
>>> f.read(6)
'a\nb\n'
>>> f = io.StringIO("a\r\nb\r\n", newline=None)
>>> f.read(5)
'a\n\nb\n'
History
Date User Action Args
2009-02-14 22:36:19pitrousetrecipients: + pitrou, alexandre.vassalotti
2009-02-14 22:36:18pitrousetmessageid: <1234650978.85.0.656093494146.issue5265@psf.upfronthosting.co.za>
2009-02-14 22:36:17pitroulinkissue5265 messages
2009-02-14 22:36:17pitroucreate