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 zach.ware
Recipients mcr314, zach.ware
Date 2020-06-08.21:27:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1591651651.51.0.523703674313.issue40914@roundup.psfhosted.org>
In-reply-to
Content
Note that `TarFile.getmembers()` is documented to return `TarInfo` objects, which are documented as explicitly *not* including file data.  Try replacing `out.addfile(file)` with `out.addfile(file, tar.extractfile(file))`.
History
Date User Action Args
2020-06-08 21:27:31zach.waresetrecipients: + zach.ware, mcr314
2020-06-08 21:27:31zach.waresetmessageid: <1591651651.51.0.523703674313.issue40914@roundup.psfhosted.org>
2020-06-08 21:27:31zach.warelinkissue40914 messages
2020-06-08 21:27:31zach.warecreate