summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-10-04 13:42:28 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2014-10-04 13:42:28 +0300
commit90c24c42b2dc912c5b6b2e34d1d4a03a9a7de915 (patch)
tree64c513bfca03777135f95139b7817aca0b5c1fc1
parent84bf989cc29ca2062439c1aaea0c60d3088b320a (diff)
parent518e71b18a008947b17369de5c06d9543db7dfc5 (diff)
downloadcpython-git-90c24c42b2dc912c5b6b2e34d1d4a03a9a7de915.tar.gz
Issue #22219: The zipfile module CLI now adds entries for directories
(including empty directories) in ZIP file.
-rw-r--r--Lib/zipfile.py11
-rw-r--r--Misc/NEWS3
2 files changed, 12 insertions, 2 deletions
diff --git a/Lib/zipfile.py b/Lib/zipfile.py
index 7e07f11d79..bda6134357 100644
--- a/Lib/zipfile.py
+++ b/Lib/zipfile.py
@@ -1790,14 +1790,21 @@ def main(args = None):
if os.path.isfile(path):
zf.write(path, zippath, ZIP_DEFLATED)
elif os.path.isdir(path):
+ if zippath:
+ zf.write(path, zippath)
for nm in os.listdir(path):
addToZip(zf,
os.path.join(path, nm), os.path.join(zippath, nm))
# else: ignore
with ZipFile(args[1], 'w') as zf:
- for src in args[2:]:
- addToZip(zf, src, os.path.basename(src))
+ for path in args[2:]:
+ zippath = os.path.basename(path)
+ if not zippath:
+ zippath = os.path.basename(os.path.dirname(path))
+ if zippath in ('', os.curdir, os.pardir):
+ zippath = ''
+ addToZip(zf, path, zippath)
if __name__ == "__main__":
main()
diff --git a/Misc/NEWS b/Misc/NEWS
index 65d6b2119e..b24e28dcd6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -159,6 +159,9 @@ Core and Builtins
Library
-------
+- Issue #22219: The zipfile module CLI now adds entries for directories
+ (including empty directories) in ZIP file.
+
- Issue #22449: In the ssl.SSLContext.load_default_certs, consult the
enviromental variables SSL_CERT_DIR and SSL_CERT_FILE on Windows.