diff options
author | Steve Dower <steve.dower@python.org> | 2019-08-21 23:22:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-21 23:22:33 (GMT) |
commit | 7ebdda0dbee7df6f0c945a7e1e623e47676e112d (patch) | |
tree | f0f37360dcb65a057f5fb65c8381997cacfa9dee /Misc | |
parent | df0c21ff46c5c37b6913828ef8c7651f523432f8 (diff) | |
download | cpython-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-.rst | 2 |
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. |