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.

Author benjamin.peterson
Recipients Arfrever, Jean-Michel.Fauth, Jim.Jewett, belopolsky, benjamin.peterson, ezio.melotti, mrabarnett, pitrou, python-dev, tchrist, Андрей Баксаляр
Date 2016-03-11.07:39:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1457681989.44.0.262717615816.issue12736@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2016-03-11 07:39:49benjamin.petersonsetrecipients: + benjamin.peterson, belopolsky, pitrou, ezio.melotti, mrabarnett, Arfrever, Jean-Michel.Fauth, python-dev, tchrist, Jim.Jewett, Андрей Баксаляр
2016-03-11 07:39:49benjamin.petersonsetmessageid: <1457681989.44.0.262717615816.issue12736@psf.upfronthosting.co.za>
2016-03-11 07:39:49benjamin.petersonlinkissue12736 messages
2016-03-11 07:39:49benjamin.petersoncreate