summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2019-08-21 23:22:33 (GMT)
committerGitHub <noreply@github.com>2019-08-21 23:22:33 (GMT)
commit7ebdda0dbee7df6f0c945a7e1e623e47676e112d (patch)
treef0f37360dcb65a057f5fb65c8381997cacfa9dee /Misc
parentdf0c21ff46c5c37b6913828ef8c7651f523432f8 (diff)
downloadcpython-7ebdda0dbee7df6f0c945a7e1e623e47676e112d.zip
cpython-7ebdda0dbee7df6f0c945a7e1e623e47676e112d.tar.gz
cpython-7ebdda0dbee7df6f0c945a7e1e623e47676e112d.tar.bz2
bpo-36311: Fixes decoding multibyte characters around chunk boundaries and improves decoding performance (GH-15083)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-08-02-15-01-33.bpo-36311.uY5vt-.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-08-02-15-01-33.bpo-36311.uY5vt-.rst b/Misc/NEWS.d/next/Core and Builtins/2019-08-02-15-01-33.bpo-36311.uY5vt-.rst
new file mode 100644
index 0000000..c45f222
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-08-02-15-01-33.bpo-36311.uY5vt-.rst
@@ -0,0 +1,2 @@
+Decoding bytes objects larger than 2GiB is faster and no longer fails when a
+multibyte characters spans a chunk boundary.