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 serhiy.storchaka
Recipients benjamin.peterson, hynek, pitrou, serhiy.storchaka, stutzbach
Date 2014-01-29.09:16:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390986966.7.0.159416133233.issue20435@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import io, _pyio
>>> io.StringIO('a\nb\r\nc\rd', newline=None)
<_io.StringIO object at 0xb707c734>
>>> io.StringIO('a\nb\r\nc\rd', newline=None).getvalue()
'a\nb\nc\nd'
>>> _pyio.StringIO('a\nb\r\nc\rd', newline=None).getvalue()
'a\nb\r\nc\rd'
>>> s = io.StringIO(newline=None); s.write('a\nb\r\nc\rd'); s.getvalue()
8
'a\nb\nc\nd'
>>> s = _pyio.StringIO(newline=None); s.write('a\nb\r\nc\rd'); s.getvalue()
8
'a\nb\r\nc\rd'
History
Date User Action Args
2014-01-29 09:16:06serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, benjamin.peterson, stutzbach, hynek
2014-01-29 09:16:06serhiy.storchakasetmessageid: <1390986966.7.0.159416133233.issue20435@psf.upfronthosting.co.za>
2014-01-29 09:16:06serhiy.storchakalinkissue20435 messages
2014-01-29 09:16:06serhiy.storchakacreate