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 jtaylor
Recipients jtaylor
Date 2011-08-15.11:12:41
SpamBayes Score 6.970084e-07
Marked as misclassified No
Message-id <1313406762.16.0.00679239298306.issue12752@psf.upfronthosting.co.za>
In-reply-to
Content
using unicode strings for locale.normalize gives following traceback with python2.7:

~$ python2.7 -c 'import locale; locale.normalize(u"en_US")'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python2.7/locale.py", line 358, in normalize
    fullname = localename.translate(_ascii_lower_map)
TypeError: character mapping must return integer, None or unicode

with python2.6 it works and it also works with non-unicode strings in 2.7
History
Date User Action Args
2011-08-15 11:12:42jtaylorsetrecipients: + jtaylor
2011-08-15 11:12:42jtaylorsetmessageid: <1313406762.16.0.00679239298306.issue12752@psf.upfronthosting.co.za>
2011-08-15 11:12:41jtaylorlinkissue12752 messages
2011-08-15 11:12:41jtaylorcreate