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 eric.smith
Recipients Miso.Kopera, eric.smith
Date 2010-12-30.20:22:20
SpamBayes Score 1.5346579e-06
Marked as misclassified No
Message-id <1293740542.45.0.345574276918.issue10797@psf.upfronthosting.co.za>
In-reply-to
Content
Either use mode 'U' or the io module if you want to match 3.x.

$ python
Python 2.6.5 (r265:79063, Jun 12 2010, 17:07:01)
[GCC 4.3.4 20090804 (release) 1] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>> open('testFile').readlines()
['# blaaaaa\r#\r\t# blaaaaaaaa\r\t#\r\t#\r#blaaa\t\r']
>>> open('testFile', 'U').readlines()
['# blaaaaa\n', '#\n', '\t# blaaaaaaaa\n', '\t#\n', '\t#\n', '#blaaa\t\n']
>>> import io
>>> io.open('testFile').readlines()
[u'# blaaaaa\n', u'#\n', u'\t# blaaaaaaaa\n', u'\t#\n', u'\t#\n', u'#blaaa\t\n']
History
Date User Action Args
2010-12-30 20:22:22eric.smithsetrecipients: + eric.smith, Miso.Kopera
2010-12-30 20:22:22eric.smithsetmessageid: <1293740542.45.0.345574276918.issue10797@psf.upfronthosting.co.za>
2010-12-30 20:22:20eric.smithlinkissue10797 messages
2010-12-30 20:22:20eric.smithcreate