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 ezio.melotti, jcope, pitrou
Date 2010-08-13.20:29:21
SpamBayes Score 2.2990745e-05
Marked as misclassified No
Message-id <1281731358.3206.12.camel@localhost.localdomain>
In-reply-to <1281730388.68.0.654225539002.issue9593@psf.upfronthosting.co.za>
Content
> Is there any way to get the efficiency of codecs I/O readlines()
> chunking behavior and specify a list of characters to use? Can the
> file delimiter be changed in python as in perl?

No, but you can use readlines() from the standard open() function (which
will give you 8-bit strings), and then decode individual lines yourself.
History
Date User Action Args
2010-08-13 20:29:22pitrousetrecipients: + pitrou, ezio.melotti, jcope
2010-08-13 20:29:21pitroulinkissue9593 messages
2010-08-13 20:29:21pitroucreate