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 serhiy.storchaka
Recipients serhiy.storchaka, vinay.sajip
Date 2015-09-20.05:26:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442726799.3.0.877950927173.issue25185@psf.upfronthosting.co.za>
In-reply-to
Content
Example:

$ LC_ALL=ru_RU.cp1251 ./python -m venv ../vpy×
$ LC_ALL=ru_RU.cp1251 ./python -m venv ../vpyØ
Error: 'charmap' codec can't encode character '\udc98' in position 617: character maps to <undefined>

The first command is successful, the latter command is failed. 'Ø'.encode('utf-8') == b'\xc3\x98', and 0x98 is invalid code in CP1251.
History
Date User Action Args
2015-09-20 05:26:39serhiy.storchakasetrecipients: + serhiy.storchaka, vinay.sajip
2015-09-20 05:26:39serhiy.storchakasetmessageid: <1442726799.3.0.877950927173.issue25185@psf.upfronthosting.co.za>
2015-09-20 05:26:39serhiy.storchakalinkissue25185 messages
2015-09-20 05:26:38serhiy.storchakacreate