summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-13 10:52:49 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-13 10:52:49 (GMT)
commit18ee29d0b870caddc0806916ca2c823254f1a1f9 (patch)
tree7c0d72db4ecfe39fa30667c3e931d61faa9b55bf /Misc
parent5d1110a952ee9551b249bcd4dd1f3d3bc21371b8 (diff)
downloadcpython-18ee29d0b870caddc0806916ca2c823254f1a1f9.zip
cpython-18ee29d0b870caddc0806916ca2c823254f1a1f9.tar.gz
cpython-18ee29d0b870caddc0806916ca2c823254f1a1f9.tar.bz2
Issue #26039: zipfile.ZipFile.open() can now be used to write data into a ZIP
file, as well as for extracting data. Patch by Thomas Kluyver.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d609f5d..27aa6f0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -277,6 +277,9 @@ Core and Builtins
Library
-------
+- Issue #26039: zipfile.ZipFile.open() can now be used to write data into a ZIP
+ file, as well as for extracting data. Patch by Thomas Kluyver.
+
- Issue #26892: Honor debuglevel flag in urllib.request.HTTPHandler. Patch
contributed by Chi Hsuan Yen.