[issue13477] tarfile module should have a command line

Ankur Ankan report at bugs.python.org
Fri Mar 8 05:12:48 CET 2013


Ankur Ankan added the comment:

> +    parser.add_argument('--gz', '--gunzip', '--gzip', '--tgz', '-z', 
> +                        '--ungzip', action = 'store_true', 
> +                        help = 'gz compression')
> +    parser.add_argument('--bz2', '--bzip2', '--tbz2', '--tbz', '--  tb2',
> +                        action = 'store_true', help = 'bz2 compression')
> +    parser.add_argument('--xz', '--lzma', action = 'store_true',
> +                        help = 'xz compression')

> Do we really need so much names for the same option? Where do these   > names come from?

   I was trying to implement all the formats mentioned in Serhiy's       review.  (and also different names for the same format)

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13477>
_______________________________________


More information about the Python-bugs-list mailing list