summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-03-15 20:02:59 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-03-15 20:02:59 (GMT)
commit2c50a09ac47e701768a4e20f8a03d17263e8db8f (patch)
treec825f5ed587fe4229ec825f3371556738e284dd2 /Misc/NEWS
parent7dedcb46441803444a3bdb0f9773d9d9b10186e9 (diff)
downloadcpython-2c50a09ac47e701768a4e20f8a03d17263e8db8f.zip
cpython-2c50a09ac47e701768a4e20f8a03d17263e8db8f.tar.gz
cpython-2c50a09ac47e701768a4e20f8a03d17263e8db8f.tar.bz2
On behalf of Tarek: Issue #11501: disutils.archive_utils.make_zipfile no
longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d4ce939..c4627fa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,10 @@ Core and Builtins
Library
-------
+- Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is
+ not installed. Instead, the zipfile.ZIP_STORED compression is used to create
+ the ZipFile. Patch by Natalia B. Bidart.
+
- Issue #11491: dbm.error is no longer raised when dbm.open is called with
the "n" as the flag argument and the file exists. The behavior matches
the documentation and general logic.