summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-12-03 08:36:45 (GMT)
committerGitHub <noreply@github.com>2018-12-03 08:36:45 (GMT)
commit4013c179117754b039957db4730880bf3285919d (patch)
tree7d7e8ed373d7469d8ddb5e6d5553337a3955f6b1 /Misc
parent062cbb67726f26794b1b461853e40696b4a0b220 (diff)
downloadcpython-4013c179117754b039957db4730880bf3285919d.zip
cpython-4013c179117754b039957db4730880bf3285919d.tar.gz
cpython-4013c179117754b039957db4730880bf3285919d.tar.bz2
bpo-35372: Fix the code page decoder for input > 2 GiB. (GH-10848)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-12-01-19-20-53.bpo-35372.RwVJjZ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-12-01-19-20-53.bpo-35372.RwVJjZ.rst b/Misc/NEWS.d/next/Core and Builtins/2018-12-01-19-20-53.bpo-35372.RwVJjZ.rst
new file mode 100644
index 0000000..dc2de44
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-12-01-19-20-53.bpo-35372.RwVJjZ.rst
@@ -0,0 +1,2 @@
+Fixed the code page decoder for input longer than 2 GiB containing
+undecodable bytes.