diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-05-09 04:17:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-09 04:17:09 (GMT) |
commit | f5f7870d9322b46ab87c45b2c4c46f6b10ecbd70 (patch) | |
tree | 580dbe5354952edb49666ed29480b80d977c3741 /Misc/NEWS | |
parent | c8faabce6ef318f3b425c6defd846e274d61e2ef (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |