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.
Created on 2008年08月10日 12:06 by ozan, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg70972 - (view) | Author: Ozan Çağlayan (ozan) | Date: 2008年08月10日 12:06 | |
>>> 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.
|
|||
| msg70976 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2008年08月10日 12:24 | |
Being Unicode strings, Py3k strings use the Unicode database's lowercase<->uppercase mapping, which is not context sensitive. See #1528802 for more discussion. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:37 | admin | set | github: 47786 |
| 2010年04月29日 17:42:43 | terry.reedy | set | status: pending -> closed |
| 2008年08月10日 12:24:41 | georg.brandl | set | status: open -> pending resolution: wont fix messages: + msg70976 nosy: + georg.brandl |
| 2008年08月10日 12:06:31 | ozan | create | |