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 sdaoden
Recipients sdaoden
Date 2011-01-27.11:00:23
SpamBayes Score 3.8391076e-06
Marked as misclassified No
Message-id <1296126025.04.0.965125504096.issue11022@psf.upfronthosting.co.za>
In-reply-to
Content
This bug may be based on same problem as Issue 6203.
- My system locale is en_GB.UTF-8.
- Given a latin1 text file, open()+ will fail with
  'UnicodeDecodeError: 'utf8' codec can't decode byte 0xf6...'
- Using locale.setlocale(..., ...)
- Re-open causes same error, I/O layer codec has not been changed!
- Using os.environ["LC_ALL"] = ...
- Re-open works properly, I/O layer codec has been changed.
P.S.: i am new to Python, please don't assume i can help in solving the problem!
History
Date User Action Args
2011-01-27 11:00:25sdaodensetrecipients: + sdaoden
2011-01-27 11:00:25sdaodensetmessageid: <1296126025.04.0.965125504096.issue11022@psf.upfronthosting.co.za>
2011-01-27 11:00:23sdaodenlinkissue11022 messages
2011-01-27 11:00:23sdaodencreate