Message359514
There is a weird thing though (using Python 3.6.8):
>>> [x.lower() for x in 'İ']
['i̇']
>>> [x for x in 'İ'.lower()]
['i', '̇']
I would expect that the results would be the same in both cases. (And this is a source of a bug for some code of mine) |
|
Date |
User |
Action |
Args |
2020-01-07 15:40:25 | pombredanne | set | recipients:
+ pombredanne, vstinner, ezio.melotti, zamsalak |
2020-01-07 15:40:25 | pombredanne | set | messageid: <1578411625.61.0.242603972563.issue34723@roundup.psfhosted.org> |
2020-01-07 15:40:25 | pombredanne | link | issue34723 messages |
2020-01-07 15:40:25 | pombredanne | create | |
|