mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
Stylistic/formatting changes to Rene Liebscher's '--help-xxx' patch.
This commit is contained in:
parent
ffcaf2dd72
commit
2ff7887270
7 changed files with 72 additions and 42 deletions
|
|
@ -110,10 +110,10 @@ def make_zipfile (base_name, base_dir, verbose=0, dry_run=0):
|
|||
|
||||
|
||||
ARCHIVE_FORMATS = {
|
||||
'gztar': (make_tarball, [('compress', 'gzip')],"gzipped tar-file"),
|
||||
'bztar': (make_tarball, [('compress', 'bzip2')],"bzip2-ed tar-file"),
|
||||
'ztar': (make_tarball, [('compress', 'compress')],"compressed tar-file"),
|
||||
'tar': (make_tarball, [('compress', None)],"uncompressed tar-file"),
|
||||
'gztar': (make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
|
||||
'bztar': (make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"),
|
||||
'ztar': (make_tarball, [('compress', 'compress')], "compressed tar file"),
|
||||
'tar': (make_tarball, [('compress', None)], "uncompressed tar file"),
|
||||
'zip': (make_zipfile, [],"zip-file")
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue