New issue 2289: Incorrect Unicode normalization https://bitbucket.org/pypy/pypy/issues/2289/incorrect-unicode-normalization
Tristan Seligmann: ``` mithrandi@lorien ~> python -V Python 2.7.11+ mithrandi@lorien ~> python -c 'from unicodedata import normalize; print repr(normalize("NFC", u"\uafb8\u11a7"))' u'\uafb8\u11a7' mithrandi@lorien ~> pypy -V Python 2.7.10 (5.1+dfsg-1, Apr 30 2016, 13:28:43) [PyPy 5.1.0 with GCC 5.3.1 20160424] mithrandi@lorien ~> pypy -c 'from unicodedata import normalize; print repr(normalize("NFC", u"\uafb8\u11a7"))' u'\uafb8' ``` Happens with PyPy 5.0.0 as well, at least (I didn't try any other versions). As far as I can tell, the PyPy normalization is wrong here and the CPython one is correct. _______________________________________________ pypy-issue mailing list pypy-issue@python.org https://mail.python.org/mailman/listinfo/pypy-issue