diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-06-15 12:32:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-15 12:32:50 (GMT) |
commit | e2e7ff0d0378ba44f10a1aae10e4bee957fb44d2 (patch) | |
tree | 919761fc9f379aaa176959db394ba078144e72cc /Misc/NEWS.d | |
parent | 142e3c08a40c75b5788474b0defe7d5c0671f675 (diff) | |
download | cpython-e2e7ff0d0378ba44f10a1aae10e4bee957fb44d2.zip cpython-e2e7ff0d0378ba44f10a1aae10e4bee957fb44d2.tar.gz cpython-e2e7ff0d0378ba44f10a1aae10e4bee957fb44d2.tar.bz2 |
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]).
(cherry picked from commit d134809cd3764c6a634eab7bb8995e3e2eff14d5)
Co-authored-by: Wonsup Yoon <pusnow@me.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-08-24-17-55-39.bpo-29456.XaB3MP.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-08-24-17-55-39.bpo-29456.XaB3MP.rst b/Misc/NEWS.d/next/Library/2017-08-24-17-55-39.bpo-29456.XaB3MP.rst new file mode 100644 index 0000000..9b30bf6 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-08-24-17-55-39.bpo-29456.XaB3MP.rst @@ -0,0 +1 @@ +Fix bugs in hangul normalization: u1176, u11a7 and u11c3 |