diff options
author | Éric Araujo <merwok@netwok.org> | 2010-12-15 20:26:30 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-12-15 20:26:30 (GMT) |
commit | 4433a5fdc04bf0ec31030af91e74706734fa02e7 (patch) | |
tree | e8427d49e7f210f4bb5d591afb5353e2bdd042e6 /Lib | |
parent | 17a59252e8505439decbdf80c73d2465288f65c7 (diff) | |
download | cpython-4433a5fdc04bf0ec31030af91e74706734fa02e7.zip cpython-4433a5fdc04bf0ec31030af91e74706734fa02e7.tar.gz cpython-4433a5fdc04bf0ec31030af91e74706734fa02e7.tar.bz2 |
Fix wrong name in docstring and doc (#10693). Original patch by Eli Bendersky.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/archive_util.py | 2 | ||||
-rw-r--r-- | Lib/shutil.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/archive_util.py b/Lib/distutils/archive_util.py index 16164c7..6dd0445 100644 --- a/Lib/distutils/archive_util.py +++ b/Lib/distutils/archive_util.py @@ -68,7 +68,7 @@ def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0): def make_zipfile(base_name, base_dir, verbose=0, dry_run=0): """Create a zip file from all the files under 'base_dir'. - The output zip file will be named 'base_dir' + ".zip". Uses either the + The output zip file will be named 'base_name' + ".zip". Uses either the "zipfile" Python module (if available) or the InfoZIP "zip" utility (if installed and found on the default search path). If neither tool is available, raises DistutilsExecError. Returns the name of the output zip diff --git a/Lib/shutil.py b/Lib/shutil.py index 44c8ac3..b808633 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -370,7 +370,7 @@ def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, archive that is being built. If not provided, the current owner and group will be used. - The output tar file will be named 'base_dir' + ".tar", possibly plus + The output tar file will be named 'base_name' + ".tar", possibly plus the appropriate compression extension (".gz", or ".bz2"). Returns the output filename. @@ -440,7 +440,7 @@ def _call_external_zip(base_dir, zip_filename, verbose=False, dry_run=False): def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None): """Create a zip file from all the files under 'base_dir'. - The output zip file will be named 'base_dir' + ".zip". Uses either the + The output zip file will be named 'base_name' + ".zip". Uses either the "zipfile" Python module (if available) or the InfoZIP "zip" utility (if installed and found on the default search path). If neither tool is available, raises ExecError. Returns the name of the output zip |