[issue7643] What is an ASCII linebreak?
Michael Foord
report at bugs.python.org
Thu Jan 7 01:03:19 CET 2010
Michael Foord <michael at voidspace.org.uk> added the comment:
'\x85' when decoded using latin-1 is just transcoded to u'\x85' which is treated as the NEL (a C1 control code equivalent to end of line). This changes iteration over the file when you decode and actually broke our csv parsing code when we got some latin-1 encoded data with \x85 in it from our customer.
----------
nosy: +michael.foord
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue7643>
_______________________________________
More information about the Python-bugs-list
mailing list