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 skip.montanaro
Recipients serhiy.storchaka, skip.montanaro
Date 2015-02-01.20:19:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CANc-5UzoOevtF_86rSdqL+nPNSDYCQVSwJxAnptBGSN4fQ3E7g@mail.gmail.com>
In-reply-to <CANc-5Uwwr4hpdVsZZw2B+3b9nFZsAb73b9Ub6AG96k3hiRUYNg@mail.gmail.com>
Content
Peter Otten posted a solution on c.l.py. The issue is that I didn't
mix my case properly when setting LANG:

hgpython% LANG=en_US.UTF-8 python3.5 -c 'import locale;
print(locale.getpreferredencoding(False))'
UTF-8
hgpython% LANG=en_US.utf8 python3.5 -c 'import locale;
print(locale.getpreferredencoding(False))'
US-ASCII
History
Date User Action Args
2015-02-01 20:19:07skip.montanarosetrecipients: + skip.montanaro, serhiy.storchaka
2015-02-01 20:19:07skip.montanarolinkissue23374 messages
2015-02-01 20:19:07skip.montanarocreate