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 r.david.murray
Recipients VPeric, lemburg, loewis, r.david.murray
Date 2010-10-23.15:27:30
SpamBayes Score 0.00040917506
Marked as misclassified No
Message-id <1287847652.31.0.933563246569.issue6668@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.2a3+ (py3k:85670:85675M, Oct 17 2010, 20:27:19) 
[GCC 4.4.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import locale
>>> locale.setlocale(locale.LC_ALL)
'LC_CTYPE=sr_RS@latin;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C'


rdmurray@hey:~/maestro/python/release31-maint>LC_ALL="sr_RS@latin" ./python
Python 3.1.2 (release31-maint:85675M, Oct 17 2010, 20:16:54) 
[GCC 4.4.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import locale
>>> locale.setlocale(locale.LC_ALL)
'LC_CTYPE=sr_RS@latin;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=C;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C'


rdmurray@hey:~/maestro/python/release27-maint>LC_ALL="sr_RS@latin" ./python
Python 2.7.0+ (release27-maint:85802, Oct 23 2010, 11:15:26) 
[GCC 4.4.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import locale
>>> locale.setlocale(locale.LC_ALL)
'C'
>>> locale.setlocale(locale.LC_ALL, 'sr_RS@latin')
'sr_RS@latin'
History
Date User Action Args
2010-10-23 15:27:32r.david.murraysetrecipients: + r.david.murray, lemburg, loewis, VPeric
2010-10-23 15:27:32r.david.murraysetmessageid: <1287847652.31.0.933563246569.issue6668@psf.upfronthosting.co.za>
2010-10-23 15:27:31r.david.murraylinkissue6668 messages
2010-10-23 15:27:30r.david.murraycreate