Shashwat Anand <anand.shash...@gmail.com> added the comment: Seems like these formats are supported, so yes "bztar" can be used as a format parameter.
_ARCHIVE_FORMATS = { '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") } ---------- nosy: +l0nwlf _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue8463> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com