Message334508
This issue is also implicated in a failure of isalpha and friends.
Easy way to see this is to compare
>>> isalpha('İ')
True
>>> isalpha('İ'.lower())
False
This results from the use of a combining character to encode lower-case Turkish dotted i:
>>> len('İ'.lower())
2
>>> unicodedata.category('İ'.lower()[1])
'Mn' |
|
Date |
User |
Action |
Args |
2019-01-29 10:10:16 | HThompson | set | recipients:
+ HThompson, gvanrossum, terry.reedy, pitrou, vstinner, ezio.melotti, mrabarnett, Arfrever, docs@python, tchrist |
2019-01-29 10:10:15 | HThompson | set | messageid: <1548756615.09.0.777541096001.issue12731@roundup.psfhosted.org> |
2019-01-29 10:10:15 | HThompson | link | issue12731 messages |
2019-01-29 10:10:15 | HThompson | create | |
|