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 ronaldoussoren
Recipients albertjan, ned.deily, r.david.murray, ronaldoussoren
Date 2014-03-21.08:10:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395389446.71.0.768360285741.issue20999@psf.upfronthosting.co.za>
In-reply-to
Content
The locale issue is that on a default (us english) install of 10.9 the following locale related environment variables are set:

$ set | grep UTF
LANG=en_US.UTF-8
LC_CTYPE=UTF-8

The locale module doesn't understand the LC_CTYPE setting, and this appears to be a at best under documented feature of OSX: you can use "UTF-8" as the locale name for LC_CTYPE and this is handled sanely by libc. 

Issue #18378 appears to be related to this.

IMHO this is a real bug and should be fixed because the locale module's documentation says it exposes the C library's functionality.
History
Date User Action Args
2014-03-21 08:10:46ronaldoussorensetrecipients: + ronaldoussoren, ned.deily, r.david.murray, albertjan
2014-03-21 08:10:46ronaldoussorensetmessageid: <1395389446.71.0.768360285741.issue20999@psf.upfronthosting.co.za>
2014-03-21 08:10:46ronaldoussorenlinkissue20999 messages
2014-03-21 08:10:46ronaldoussorencreate