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 pitrou
Recipients ezio.melotti, georg.brandl, loewis, ned.deily, pitrou, r.david.murray
Date 2009-06-08.16:17:53
SpamBayes Score 0.0013944211
Marked as misclassified No
Message-id <1244477875.03.0.0811140664183.issue6203@psf.upfronthosting.co.za>
In-reply-to
Content
For some reason only LC_CTYPE is affected:

>>> locale.getlocale(locale.LC_CTYPE)
('fr_FR', 'UTF8')
>>> locale.getlocale(locale.LC_MESSAGES)
(None, None)
>>> locale.getlocale(locale.LC_TIME)
(None, None)
>>> locale.getlocale(locale.LC_NUMERIC)
(None, None)
>>> locale.getlocale(locale.LC_COLLATE)
(None, None)
History
Date User Action Args
2009-06-08 16:17:55pitrousetrecipients: + pitrou, loewis, georg.brandl, ned.deily, ezio.melotti, r.david.murray
2009-06-08 16:17:55pitrousetmessageid: <1244477875.03.0.0811140664183.issue6203@psf.upfronthosting.co.za>
2009-06-08 16:17:53pitroulinkissue6203 messages
2009-06-08 16:17:53pitroucreate