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 skip.montanaro
Recipients skip.montanaro, techtonik
Date 2008-07-15.11:47:45
SpamBayes Score 0.00038626816
Marked as misclassified No
Message-id <1216122468.37.0.122218421522.issue3359@psf.upfronthosting.co.za>
In-reply-to
Content
The whole idea of universal newline mode is that the various possible
line endings ('\r', '\n' and '\r\n') are all mapped to '\n' precisely
so the user doesn't have to detect and fiddle with them.  Using 'b' and
'U' together makes no sense.

* If you really want to see the line endings use 'rb'.
* If you don't care about the line endings regardless of source, use 'rU'.
* Otherwise use 'r'.
History
Date User Action Args
2008-07-15 11:47:48skip.montanarosetspambayes_score: 0.000386268 -> 0.00038626816
recipients: + skip.montanaro, techtonik
2008-07-15 11:47:48skip.montanarosetspambayes_score: 0.000386268 -> 0.000386268
messageid: <1216122468.37.0.122218421522.issue3359@psf.upfronthosting.co.za>
2008-07-15 11:47:47skip.montanarolinkissue3359 messages
2008-07-15 11:47:45skip.montanarocreate