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 benjamin.peterson, hynek, pitrou, serhiy.storchaka, stutzbach
Date 2014-02-02.22:36:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391380614.81.0.623038880031.issue20435@psf.upfronthosting.co.za>
In-reply-to
Content
> Current results for newline != '\n' looks meanless to me.

They don't look meaningless to me, e.g.:

>>> io.StringIO("a\r\nc\rd", newline=None).getvalue()
'a\nc\nd'
>>> sio = io.StringIO(newline=None); sio.write("a\r\nc\rd"); sio.getvalue()
6
'a\nc\nd'

There may be other cases where they make less sense, but that's a separate issue.
History
Date User Action Args
2014-02-02 22:36:54pitrousetrecipients: + pitrou, benjamin.peterson, stutzbach, hynek, serhiy.storchaka
2014-02-02 22:36:54pitrousetmessageid: <1391380614.81.0.623038880031.issue20435@psf.upfronthosting.co.za>
2014-02-02 22:36:54pitroulinkissue20435 messages
2014-02-02 22:36:54pitroucreate