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 RoliSoft
Recipients RoliSoft, Silver Fox, lars.gustaebel
Date 2016-10-16.12:36:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476621364.37.0.61570250298.issue28449@psf.upfronthosting.co.za>
In-reply-to
Content
For anyone finding this bug through Google before it is fixed, a workaround could be to monkeypatch the OPEN_METH dict with an OrderedDict:

	tarfile.TarFile.OPEN_METH = OrderedDict()
	tarfile.TarFile.OPEN_METH['gz']  = 'gzopen'
	tarfile.TarFile.OPEN_METH['bz2'] = 'bz2open'
	tarfile.TarFile.OPEN_METH['xz']  = 'xzopen'
	tarfile.TarFile.OPEN_METH['tar'] = 'taropen'
History
Date User Action Args
2016-10-16 12:36:04RoliSoftsetrecipients: + RoliSoft, lars.gustaebel, Silver Fox
2016-10-16 12:36:04RoliSoftsetmessageid: <1476621364.37.0.61570250298.issue28449@psf.upfronthosting.co.za>
2016-10-16 12:36:04RoliSoftlinkissue28449 messages
2016-10-16 12:36:04RoliSoftcreate