summaryrefslogtreecommitdiff
path: root/Lib/shutil.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-08 05:47:23 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-08 05:47:23 +0300
commit2504cecebdff16588d7b753843f4a856c510851e (patch)
tree051b1e3894851ae6596abacc37254f79a661faec /Lib/shutil.py
parentde5f9f4f70c6527c49d482e3b0bb0aad2851d34c (diff)
downloadcpython-git-2504cecebdff16588d7b753843f4a856c510851e.tar.gz
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 'Lib/shutil.py')
-rw-r--r--Lib/shutil.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py
index e87d18e9c8..d767a0c945 100644
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -687,7 +687,16 @@ def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None):
if not dry_run:
with zipfile.ZipFile(zip_filename, "w",
compression=zipfile.ZIP_DEFLATED) as zf:
+ path = os.path.normpath(base_dir)
+ zf.write(path, path)
+ if logger is not None:
+ logger.info("adding '%s'", path)
for dirpath, dirnames, filenames in os.walk(base_dir):
+ for name in sorted(dirnames):
+ path = os.path.normpath(os.path.join(dirpath, name))
+ zf.write(path, path)
+ if logger is not None:
+ logger.info("adding '%s'", path)
for name in filenames:
path = os.path.normpath(os.path.join(dirpath, name))
if os.path.isfile(path):