summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorWonsup Yoon <pusnow@me.com>2018-06-15 12:03:14 (GMT)
committerXiang Zhang <angwerzx@126.com>2018-06-15 12:03:14 (GMT)
commitd134809cd3764c6a634eab7bb8995e3e2eff14d5 (patch)
tree6bcc3ec615c093c71b96ce1ce52594bacdc75466 /Misc
parentceeef10cdbc08561f9954e13bbed1cb2299a8c72 (diff)
downloadcpython-d134809cd3764c6a634eab7bb8995e3e2eff14d5.zip
cpython-d134809cd3764c6a634eab7bb8995e3e2eff14d5.tar.gz
cpython-d134809cd3764c6a634eab7bb8995e3e2eff14d5.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]).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2017-08-24-17-55-39.bpo-29456.XaB3MP.rst1
2 files changed, 2 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 96aad50..25d1db0 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1800,6 +1800,7 @@ Jason Yeo
EungJun Yi
Bob Yodlowski
Danny Yoo
+Wonsup Yoon
Rory Yorke
George Yoshida
Kazuhiro Yoshida
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