summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-08 02:47:23 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-08 02:47:23 (GMT)
commit2504cecebdff16588d7b753843f4a856c510851e (patch)
tree051b1e3894851ae6596abacc37254f79a661faec /Misc
parentde5f9f4f70c6527c49d482e3b0bb0aad2851d34c (diff)
downloadcpython-2504cecebdff16588d7b753843f4a856c510851e.zip
cpython-2504cecebdff16588d7b753843f4a856c510851e.tar.gz
cpython-2504cecebdff16588d7b753843f4a856c510851e.tar.bz2
Issue #24982: shutil.make_archive() with the "zip" format now adds entries
for directories (including empty directories) in ZIP file. Added test for comparing shutil.make_archive() with the "zip" command.
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 ec450ff..79faea9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -81,6 +81,9 @@ Core and Builtins
Library
-------
+- Issue #24982: shutil.make_archive() with the "zip" format now adds entries
+ for directories (including empty directories) in ZIP file.
+
- Issue #25019: Fixed a crash caused by setting non-string key of expat parser.
Based on patch by John Leitch.