diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-15 20:02:59 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-15 20:02:59 (GMT) |
commit | 2c50a09ac47e701768a4e20f8a03d17263e8db8f (patch) | |
tree | c825f5ed587fe4229ec825f3371556738e284dd2 /Misc/NEWS | |
parent | 7dedcb46441803444a3bdb0f9773d9d9b10186e9 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |