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 gregory.p.smith
Recipients barry, docs@python, ezio.melotti, gregory.p.smith, jwilk, martin.panter, python-dev, r.david.murray, scharron, serhiy.storchaka, terry.reedy, vstinner
Date 2015-07-10.17:11:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1436548284.83.0.344202303856.issue22232@psf.upfronthosting.co.za>
In-reply-to
Content
If this isn't already mentioned in 2 to 3 porting notes it is worth highlighting there.  code which uses a str in python 2 and still uses a str in python 3 is now splitting on many more characters.

That seems to be the source of bugs like issue22233.  splitlines() used to work for the strict \r\n splitting task.  now that code needs to made explicit about its splitting desires.
History
Date User Action Args
2015-07-10 17:11:24gregory.p.smithsetrecipients: + gregory.p.smith, barry, terry.reedy, vstinner, jwilk, ezio.melotti, r.david.murray, docs@python, python-dev, martin.panter, serhiy.storchaka, scharron
2015-07-10 17:11:24gregory.p.smithsetmessageid: <1436548284.83.0.344202303856.issue22232@psf.upfronthosting.co.za>
2015-07-10 17:11:24gregory.p.smithlinkissue22232 messages
2015-07-10 17:11:24gregory.p.smithcreate