diff options
author | T. Wouters <thomas@python.org> | 2023-06-19 17:09:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-19 17:09:04 (GMT) |
commit | 1858db7cbdbf41aa600c954c15224307bf81a258 (patch) | |
tree | 93d20043fa08bbdbc2c17510d7990fdc80bee6af /Misc | |
parent | 7a56a4148c521969d64164d2776641f19e3ca9e8 (diff) | |
download | cpython-1858db7cbdbf41aa600c954c15224307bf81a258.zip cpython-1858db7cbdbf41aa600c954c15224307bf81a258.tar.gz cpython-1858db7cbdbf41aa600c954c15224307bf81a258.tar.bz2 |
GH-105808: Fix a regression introduced in GH-101251 (#105910)
Fix a regression introduced in pythonGH-101251, causing GzipFile.flush() to
not flush the compressor (nor pass along the zip_mode argument).
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). |