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 ozan
Recipients ozan
Date 2008-08-10.12:06:31
SpamBayes Score 0.026466925
Marked as misclassified No
Message-id <[email protected]>
In-reply-to
Content
>>> 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.name('I')      # The capital dotless one
'LATIN CAPITAL LETTER I'


>>> unicodedata.name('i')      # The small 'i'
'LATIN SMALL LETTER I'
>>> unicodedata.name('İ')      # The corresponding capital one
'LATIN CAPITAL LETTER I WITH DOT ABOVE'

The other non-ascii turkish characters 'şŞğĞöÖçÇüÜ' are correctly
handled by case conversion methods.
History
Date User Action Args
2008-08-10 12:06:32ozansetrecipients: + ozan
2008-08-10 12:06:32ozansetmessageid: <[email protected]>
2008-08-10 12:06:31ozanlinkissue3536 messages
2008-08-10 12:06:31ozancreate