Message261547
The full case mappings do not preserve normalization form.
>>> for c in 'ΰ'.upper().lower(): print(unicodedata.name(c))
...
GREEK SMALL LETTER UPSILON
COMBINING DIAERESIS
COMBINING ACUTE ACCENT
>>> unicodedata.normalize('NFC', 'ΰ'.upper().lower()) == 'ΰ'
True |
|
| Date |
User |
Action |
Args |
| 2016-03-11 07:39:49 | benjamin.peterson | set | recipients:
+ benjamin.peterson, belopolsky, pitrou, ezio.melotti, mrabarnett, Arfrever, Jean-Michel.Fauth, python-dev, tchrist, Jim.Jewett, Андрей Баксаляр |
| 2016-03-11 07:39:49 | benjamin.peterson | set | messageid: <[email protected]> |
| 2016-03-11 07:39:49 | benjamin.peterson | link | issue12736 messages |
| 2016-03-11 07:39:49 | benjamin.peterson | create | |
|