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 <rep...@bugs.python.org>
<http://bugs.python.org/issue17252>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to