diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-10-20 14:08:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-20 14:08:15 (GMT) |
commit | 56cb465cc93dcb35aaf7266ca3dbe2dcff1fac5f (patch) | |
tree | b9bce18e156f23827247be42659d6fe99cd5c1cd /Misc | |
parent | 525f40d231aba2c004619fc7a5207171ed65b0cb (diff) | |
download | cpython-56cb465cc93dcb35aaf7266ca3dbe2dcff1fac5f.zip cpython-56cb465cc93dcb35aaf7266ca3dbe2dcff1fac5f.tar.gz cpython-56cb465cc93dcb35aaf7266ca3dbe2dcff1fac5f.tar.bz2 |
bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)
and in codecs.escape_decode() when decode an escaped non-ascii byte.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2017-10-20-14-07-46.bpo-31825.gJvmGW.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-10-20-14-07-46.bpo-31825.gJvmGW.rst b/Misc/NEWS.d/next/Core and Builtins/2017-10-20-14-07-46.bpo-31825.gJvmGW.rst new file mode 100644 index 0000000..18e81af --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2017-10-20-14-07-46.bpo-31825.gJvmGW.rst @@ -0,0 +1,2 @@ +Fixed OverflowError in the 'unicode-escape' codec and in +codecs.escape_decode() when decode an escaped non-ascii byte. |