[issue3536] case conversion problems in Turkish

2010-04-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue3536] case conversion problems in Turkish

2008-08-10 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Being Unicode strings, Py3k strings use the Unicode database's lowercase<->uppercase mapping, which is not context sensitive. See #1528802 for more discussion. -- nosy: +georg.brandl resolution: -> wont fix status: open -> pending __

[issue3536] case conversion problems in Turkish

2008-08-10 Thread Ozan Çağlayan
New submission from Ozan Çağlayan <[EMAIL PROTECTED]>: >>> sys.getdefaultencoding() 'utf-8' >>> s = 'iı' >>> s.upper() 'II' # should be 'İI' >>> t = 'Iİ' >>> t.lower() 'ii' # should be 'ıi' >>> unicodedata.name('ı') # The small dotless one 'LATIN SMALL LETTER DOTLESS I' >>> unicodedata.na