Message353329
https://bugs.python.org/issue34097 addressed a zipfile.ZipFile() issue where zip files with timestamps prior to the year 1980 could not be created. The fix adds the strict_timestamps=True|False keyword argument to the ZipFile class.
shutil.make_archive() is a high-level utility that uses ZipFile() to simplify zip file creation. Unfortunately, it doesn't support the new 'strict_timestamps' keyword which means users encountering the 'ValueError: ZIP does not support timestamps before 1980' exception must revert to using zipfile.ZipFile() instead.
I believe adding the 'strict_timestamps' keyword to shutil.make_archive() and propagating it to zipfileZipFile() |
|
Date |
User |
Action |
Args |
2019-09-26 16:43:50 | valorien | set | recipients:
+ valorien |
2019-09-26 16:43:50 | valorien | set | messageid: <1569516230.4.0.693896047629.issue38288@roundup.psfhosted.org> |
2019-09-26 16:43:50 | valorien | link | issue38288 messages |
2019-09-26 16:43:50 | valorien | create | |
|