summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-05-09 04:17:09 (GMT)
committerGitHub <noreply@github.com>2017-05-09 04:17:09 (GMT)
commitf5f7870d9322b46ab87c45b2c4c46f6b10ecbd70 (patch)
tree580dbe5354952edb49666ed29480b80d977c3741 /Misc/NEWS
parentc8faabce6ef318f3b425c6defd846e274d61e2ef (diff)
downloadcpython-f5f7870d9322b46ab87c45b2c4c46f6b10ecbd70.zip
cpython-f5f7870d9322b46ab87c45b2c4c46f6b10ecbd70.tar.gz
cpython-f5f7870d9322b46ab87c45b2c4c46f6b10ecbd70.tar.bz2
bpo-29990: Fix range checking in GB18030 decoder (#1495) (#1508)
When decoding a 4-byte GB18030 sequence, the first and third byte cannot exceed 0xFE.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1ec6a09..06e464f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,8 @@ Extension Modules
Library
-------
+- bpo-29990: Fix range checking in GB18030 decoder. Original patch by Ma Lin.
+
- Revert bpo-26293 for zipfile breakage. See also bpo-29094.
- bpo-30243: Removed the __init__ methods of _json's scanner and encoder.