This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author l0nwlf
Recipients georg.brandl, l0nwlf, mastrodomenico
Date 2010-04-19.18:33:20
SpamBayes Score 0.2686319
Marked as misclassified No
Message-id <1271702002.6.0.0365772985123.issue8463@psf.upfronthosting.co.za>
In-reply-to
Content
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")
     }
History
Date User Action Args
2010-04-19 18:33:22l0nwlfsetrecipients: + l0nwlf, georg.brandl, mastrodomenico
2010-04-19 18:33:22l0nwlfsetmessageid: <1271702002.6.0.0365772985123.issue8463@psf.upfronthosting.co.za>
2010-04-19 18:33:20l0nwlflinkissue8463 messages
2010-04-19 18:33:20l0nwlfcreate