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 ned.deily
Recipients ned.deily, ronaldoussoren, sjt
Date 2009-06-24.18:56:59
SpamBayes Score 1.0413999e-06
Marked as misclassified No
Message-id <1245869821.59.0.697829647424.issue6315@psf.upfronthosting.co.za>
In-reply-to
Content
This was probably fixed by the checkins for Issue6202.

$ python3.1
Python 3.1rc1+ (py3k, Jun  8 2009, 22:53:59) 
[GCC 4.0.1 (Apple Inc. build 5490)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import locale
>>> locale._build_localename(locale.getdefaultlocale())
'en_US.UTF8'
>>> 
$ python3.0
Python 3.0.1 (r301:69597, Feb 14 2009, 19:03:52) 
[GCC 4.0.1 (Apple Inc. build 5490)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import locale
>>> locale._build_localename(locale.getdefaultlocale())
'C.mac-roman'
>>>
History
Date User Action Args
2009-06-24 18:57:01ned.deilysetrecipients: + ned.deily, ronaldoussoren, sjt
2009-06-24 18:57:01ned.deilysetmessageid: <1245869821.59.0.697829647424.issue6315@psf.upfronthosting.co.za>
2009-06-24 18:57:00ned.deilylinkissue6315 messages
2009-06-24 18:56:59ned.deilycreate