diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-06-19 17:42:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-19 17:42:23 (GMT) |
commit | 225cc4c043aca472f0c7c78bed1a7524fae5c278 (patch) | |
tree | e0c6b01b347b088988df12206e432ebf0a89aadd /Misc | |
parent | 5e524ef34687899ed09b5a4c56568346e20f789e (diff) | |
download | cpython-225cc4c043aca472f0c7c78bed1a7524fae5c278.zip cpython-225cc4c043aca472f0c7c78bed1a7524fae5c278.tar.gz cpython-225cc4c043aca472f0c7c78bed1a7524fae5c278.tar.bz2 |
[3.12] GH-105808: Fix a regression introduced in GH-101251 (GH-105910) (#105920)
GH-105808: Fix a regression introduced in GH-101251 (GH-105910)
Fix a regression introduced in pythonGH-101251, causing GzipFile.flush() to
not flush the compressor (nor pass along the zip_mode argument).
(cherry picked from commit 1858db7cbdbf41aa600c954c15224307bf81a258)
Co-authored-by: T. Wouters <thomas@python.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-06-19-11-31-55.gh-issue-105808.NL-quu.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-06-19-11-31-55.gh-issue-105808.NL-quu.rst b/Misc/NEWS.d/next/Library/2023-06-19-11-31-55.gh-issue-105808.NL-quu.rst new file mode 100644 index 0000000..8e69fd6 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-06-19-11-31-55.gh-issue-105808.NL-quu.rst @@ -0,0 +1 @@ +Fix a regression introduced in GH-101251 for 3.12, causing :meth:`gzip.GzipFile.flush` to not flush the compressor (nor pass along the ``zip_mode`` argument). |