Martin v. Löwis <mar...@v.loewis.de> added the comment:

In addition to R. David's remark, it also works fine in a German locale. In 
general, you cannot know whether the byte '\xe4' denotes 'ä' or some other 
letter. For example, in KOI8-R, it denotes Д, instead, which already is an 
upper-case letter. So either do setlocale at the start of your program, or 
(better) switch to Unicode strings.

Python 2.6.6 (r266:84292, Dec 27 2010, 00:02:40)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print u'ä'.upper()
Ä

----------
nosy: +loewis

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue14587>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to