Searched refs:strict_timestamps (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Doc/library/ |
D | zipfile.rst | 142 compresslevel=None, *, strict_timestamps=True) 180 The *strict_timestamps* argument, when set to ``False``, allows to 221 The *strict_timestamps* keyword-only argument 642 strict_timestamps=True) 653 The *strict_timestamps* argument, when set to ``False``, allows to 665 The *strict_timestamps* keyword-only argument
|
/third_party/python/Lib/ |
D | zipfile.py | 491 def from_file(cls, filename, arcname=None, *, strict_timestamps=True): argument 506 if not strict_timestamps and date_time[0] < 1980: 508 elif not strict_timestamps and date_time[0] > 2107: 1208 compresslevel=None, *, strict_timestamps=True): argument 1226 self._strict_timestamps = strict_timestamps 1729 strict_timestamps=self._strict_timestamps)
|
/third_party/python/Lib/test/ |
D | test_zipfile.py | 607 with zipfile.ZipFile(TESTFN2, "w", strict_timestamps=False) as zipfp: 639 with zipfile.ZipFile(TESTFN2, "w", strict_timestamps=False) as zipfp:
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 3860 a new ``strict_timestamps`` parameter at the cost of setting the timestamp
|