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, jfinkels, lemburg, nyamatongwe, pitrou, vstinner
Date 2011-01-03.20:22:01
SpamBayes Score 0.00070634595
Marked as misclassified No
Message-id <1294086124.41.0.531834982864.issue6664@psf.upfronthosting.co.za>
In-reply-to
Content
By design, readlines() only recognizes those characters which are official line separators on various OSes (\n, \r, \r\n). This is important for proper parsing of log files, internet protocols, etc.
If you want to split on all line separators recognized by the unicode spec, use str.splitlines().
History
Date User Action Args
2011-01-03 20:22:04pitrousetrecipients: + pitrou, lemburg, nyamatongwe, vstinner, benjamin.peterson, jfinkels
2011-01-03 20:22:04pitrousetmessageid: <1294086124.41.0.531834982864.issue6664@psf.upfronthosting.co.za>
2011-01-03 20:22:01pitroulinkissue6664 messages
2011-01-03 20:22:01pitroucreate