[issue17252] Latin Capital Letter I with Dot Above

Firat Ozgul report at bugs.python.org
Wed Feb 20 13:36:42 CET 2013


Firat Ozgul added the comment:

Don't you think that there is a problem here?

>>> "KİTAP".lower().upper()
'KİTAP'
>>> ascii("KİTAP".lower().upper())
"'KI\\u0307TAP'"

"İ" is not "i\u0307". That's a different letter. "i\u0307"is 'i with combining dot above'. However, "İ" is "\u0130" (Latin Capital Letter I with Dot Above).

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue17252>
_______________________________________


More information about the Python-bugs-list mailing list