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 vstinner
Recipients vstinner
Date 2010-12-27.01:57:01
SpamBayes Score 0.0039387345
Marked as misclassified No
Message-id <1293415023.66.0.544290735249.issue10778@psf.upfronthosting.co.za>
In-reply-to
Content
decoding_fgets() decodes the input filename from UTF-8 whereas the filename is encoded to the filesystem encoding. PyUnicode_DecodeFSDefault() should be used.

decoding_fgets() raises a SyntaxError("Non-UTF-8 code starting with '\xHH' in file xxx on line xxx, but no encoding declared; ...").

indenterror() (inconsistent use of tabs and spaces in indentation) and
History
Date User Action Args
2010-12-27 01:57:03vstinnersetrecipients: + vstinner
2010-12-27 01:57:03vstinnersetmessageid: <1293415023.66.0.544290735249.issue10778@psf.upfronthosting.co.za>
2010-12-27 01:57:01vstinnerlinkissue10778 messages
2010-12-27 01:57:01vstinnercreate