diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-10-25 00:32:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 00:32:08 (GMT) |
commit | 6f130f231b8524f1b5c8d9c4cf155e93ef01062f (patch) | |
tree | 81edf7c40cad47b3df65368f273f01a6c24b2ebe /Misc/NEWS.d | |
parent | a4eb2e308d8c044aa87e560b1ddccbc804e003f1 (diff) | |
download | cpython-6f130f231b8524f1b5c8d9c4cf155e93ef01062f.zip cpython-6f130f231b8524f1b5c8d9c4cf155e93ef01062f.tar.gz cpython-6f130f231b8524f1b5c8d9c4cf155e93ef01062f.tar.bz2 |
[3.12] gh-102956: Fix returning of empty byte strings after seek in zipfile … (GH-103565) (#111289)
gh-102956: Fix returning of empty byte strings after seek in zipfile … (GH-103565)
(cherry picked from commit c73b0f35602abf5f283bf64266641f19bc82fce0)
gh-102956: Fix returning of empty byte strings after seek in zipfile module. This was a regression in 3.12.0 due to a performance enhancement.
Co-authored-by: Jokimax <77680901+Jokimax@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-04-15-14-45-21.gh-issue-102956.Z6qeUy.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-04-15-14-45-21.gh-issue-102956.Z6qeUy.rst b/Misc/NEWS.d/next/Library/2023-04-15-14-45-21.gh-issue-102956.Z6qeUy.rst new file mode 100644 index 0000000..1a4bb9b --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-04-15-14-45-21.gh-issue-102956.Z6qeUy.rst @@ -0,0 +1 @@ +Fix returning of empty byte strings after seek in zipfile module |