Message375849
| 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:18 | maarten | set | recipients: + maarten, jonash, martin.panter, randombit |
| 2020-08-24 15:14:18 | maarten | set | messageid: <1598282058.45.0.850479662595.issue31526@roundup.psfhosted.org> |
| 2020-08-24 15:14:18 | maarten | link | issue31526 messages |
| 2020-08-24 15:14:18 | maarten | create | |