summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-06-19 17:42:23 (GMT)
committerGitHub <noreply@github.com>2023-06-19 17:42:23 (GMT)
commit225cc4c043aca472f0c7c78bed1a7524fae5c278 (patch)
treee0c6b01b347b088988df12206e432ebf0a89aadd /Misc
parent5e524ef34687899ed09b5a4c56568346e20f789e (diff)
downloadcpython-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.rst1
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).