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 maarten
Recipients jonash, maarten, martin.panter, randombit
Date 2020-08-24.15:14:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1598282058.45.0.850479662595.issue31526@roundup.psfhosted.org>
In-reply-to
Content
I have the same issue.
The timestamp is inserted here:
https://github.com/python/cpython/blob/802726acf6048338394a6a4750835c2cdd6a947b/Lib/tarfile.py#L419-L420

Because I noticed the timestamp was not included in the timestamp,
I could zero it by doing:
```
with open(gzipped_tarball,"r+b") as f:
    f.seek(4, 0)
    f.write(b"\x00\x00\x00\x00")
```
History
Date User Action Args
2020-08-24 15:14:18maartensetrecipients: + maarten, jonash, martin.panter, randombit
2020-08-24 15:14:18maartensetmessageid: <1598282058.45.0.850479662595.issue31526@roundup.psfhosted.org>
2020-08-24 15:14:18maartenlinkissue31526 messages
2020-08-24 15:14:18maartencreate