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 alexandre.vassalotti
Recipients alexandre.vassalotti, benjamin.peterson, jaraco, pitrou
Date 2009-05-12.03:22:48
SpamBayes Score 1.2762641e-10
Marked as misclassified No
Message-id <1242098571.11.0.483604198889.issue5265@psf.upfronthosting.co.za>
In-reply-to
Content
The bug shouldn't affect 2.6 and 2.7 unless you backported the now
obsolete _stringio module from 3.0.

I tested 2.6 and 2.7 and as expected I didn't see the bug:

Python 2.6.2+ (release26-maint:72576, May 11 2009, 23:16:48) 
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import io
>>> io.StringIO('foo\r\nbar\r\n', newline=None).read()
u'foo\nbar\n'
History
Date User Action Args
2009-05-12 03:22:51alexandre.vassalottisetrecipients: + alexandre.vassalotti, jaraco, pitrou, benjamin.peterson
2009-05-12 03:22:51alexandre.vassalottisetmessageid: <1242098571.11.0.483604198889.issue5265@psf.upfronthosting.co.za>
2009-05-12 03:22:49alexandre.vassalottilinkissue5265 messages
2009-05-12 03:22:48alexandre.vassalotticreate