]> granicus.if.org Git - python/commit
bpo-29456: Fix bugs in unicodedata.normalize: u1176, u11a7 and u11c3 (GH-1958)
authorWonsup Yoon <pusnow@me.com>
Fri, 15 Jun 2018 12:03:14 +0000 (21:03 +0900)
committerXiang Zhang <angwerzx@126.com>
Fri, 15 Jun 2018 12:03:14 +0000 (20:03 +0800)
commitd134809cd3764c6a634eab7bb8995e3e2eff14d5
tree6bcc3ec615c093c71b96ce1ce52594bacdc75466
parentceeef10cdbc08561f9954e13bbed1cb2299a8c72
bpo-29456: Fix bugs in unicodedata.normalize: u1176, u11a7 and u11c3 (GH-1958)

Hangul composition check boundaries are wrong for the second character
([0x1161, 0x1176) instead of [0x1161, 0x1176]) and third character ((0x11A7, 0x11C3)
instead of [0x11A7, 0x11C3]).
Lib/test/test_unicodedata.py
Misc/ACKS
Misc/NEWS.d/next/Library/2017-08-24-17-55-39.bpo-29456.XaB3MP.rst [new file with mode: 0644]
Modules/unicodedata.c