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 serhiy.storchaka
Recipients georg.brandl, groodt, loewis, r.david.murray, rg3, serhiy.storchaka
Date 2012-07-14.13:25:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1342272344.78.0.527055195318.issue5815@psf.upfronthosting.co.za>
In-reply-to
Content
Here is yet some inconsistency:

$ LANG=uk_ua.microsoftcp1251 ./python -c "import locale; print(locale.getdefaultlocale())"
('uk_UA', 'CP1251')
$ LANG=uk_ua.microsoft-cp1251 ./python -c "import locale; print(locale.getdefaultlocale())"
('uk_UA', 'microsoft_cp1251')

$ ./python -c "import locale; print(locale.normalize('ka_ge.georgianacademy'))"
ka_GE.GEORGIAN-ACADEMY
$ ./python -c "import locale; print(locale.normalize('ka_GE.GEORGIAN-ACADEMY'))"
ka_GE.georgian_academy
History
Date User Action Args
2012-07-14 13:25:44serhiy.storchakasetrecipients: + serhiy.storchaka, loewis, georg.brandl, r.david.murray, rg3, groodt
2012-07-14 13:25:44serhiy.storchakasetmessageid: <1342272344.78.0.527055195318.issue5815@psf.upfronthosting.co.za>
2012-07-14 13:25:44serhiy.storchakalinkissue5815 messages
2012-07-14 13:25:44serhiy.storchakacreate