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 christian.heimes
Recipients benjamin.peterson, christian.heimes, ezio.melotti, firatozgul, lemburg, pitrou, r.david.murray, vstinner
Date 2013-02-20.15:21:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361373697.28.0.675954508793.issue17252@psf.upfronthosting.co.za>
In-reply-to
Content
In the meantime you can use PyICU https://pypi.python.org/pypi/PyICU for locale aware transformations:

>>> from icu import UnicodeString, Locale
>>> tr = Locale("TR")
>>> s = UnicodeString("KADIN")
>>> print(unicode(s.toLower(tr)))
kadın
>>> unicode(s.toLower(tr))
u'kad\u0131n'
History
Date User Action Args
2013-02-20 15:21:37christian.heimessetrecipients: + christian.heimes, lemburg, pitrou, vstinner, benjamin.peterson, ezio.melotti, r.david.murray, firatozgul
2013-02-20 15:21:37christian.heimessetmessageid: <1361373697.28.0.675954508793.issue17252@psf.upfronthosting.co.za>
2013-02-20 15:21:37christian.heimeslinkissue17252 messages
2013-02-20 15:21:37christian.heimescreate