Philippe Ombredanne <pombreda...@nexb.com> added the comment:

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)

----------
nosy: +pombredanne

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue34723>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to