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 brett.cannon, flox, michael.foord, r.david.murray, vstinner
Date 2010-09-12.08:09:07
SpamBayes Score 1.744468e-07
Marked as misclassified No
Message-id <1284278949.88.0.802160574126.issue8589@psf.upfronthosting.co.za>
In-reply-to
Content
> Still happens with r84709 on PPC Tiger 3.x

It's not the same error, PYTHONWARNINGS is decoded from the wrong encoding: locale encodind instead of utf-8. r84731 should fix this bug (at least, it restores the encoding used because my last commit, r84694).

With r84731, Python decodes PYTHONWARNINGS with strict error handler on Mac OS X, instead of surrogateescape error handler. I don't think that it matters because PYTHONWARNINGS is not supposed to contain raw bytes, and anyway, Mac OS X rejects invalid utf-8 filenames.
History
Date User Action Args
2010-09-12 08:09:10vstinnersetrecipients: + vstinner, brett.cannon, r.david.murray, michael.foord, flox
2010-09-12 08:09:09vstinnersetmessageid: <1284278949.88.0.802160574126.issue8589@psf.upfronthosting.co.za>
2010-09-12 08:09:08vstinnerlinkissue8589 messages
2010-09-12 08:09:07vstinnercreate