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 belopolsky, doerwalter, ncoghlan, pitrou, vstinner
Date 2010-11-07.15:54:57
SpamBayes Score 2.7452657e-07
Marked as misclassified No
Message-id <1289145298.67.0.0839554047039.issue10329@psf.upfronthosting.co.za>
In-reply-to
Content
$ LANG=C ./python -m test.regrtest test_imp test_trace
[1/2] test_imp
[2/2] test_trace
...
UnicodeEncodeError: 'ascii' codec can't encode character '\xa0' in position 5: ordinal not in range(128)

issue10329.diff fixes this failure. The failure comes from a nonbreaking space introduced by myself by error in Lib/os.py, which is the only non-ASCII character in this file. r86302 removes it.

I commited issue10329.diff to Python 3.2 as r86303: thanks Alex ;-)
History
Date User Action Args
2010-11-07 15:54:58vstinnersetrecipients: + vstinner, doerwalter, ncoghlan, belopolsky, pitrou
2010-11-07 15:54:58vstinnersetmessageid: <1289145298.67.0.0839554047039.issue10329@psf.upfronthosting.co.za>
2010-11-07 15:54:57vstinnerlinkissue10329 messages
2010-11-07 15:54:57vstinnercreate