Searched refs:strict_timestamps (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | zipfile.rst | 143 compresslevel=None, *, strict_timestamps=True) 181 The *strict_timestamps* argument, when set to ``False``, allows to 222 The *strict_timestamps* keyword-only argument 625 strict_timestamps=True) 636 The *strict_timestamps* argument, when set to ``False``, allows to 648 The *strict_timestamps* keyword-only argument
|
/external/python/cpython3/Lib/ |
D | zipfile.py | 490 def from_file(cls, filename, arcname=None, *, strict_timestamps=True): argument 505 if not strict_timestamps and date_time[0] < 1980: 507 elif not strict_timestamps and date_time[0] > 2107: 1207 compresslevel=None, *, strict_timestamps=True): argument 1225 self._strict_timestamps = strict_timestamps 1728 strict_timestamps=self._strict_timestamps)
|
/external/python/cpython3/Lib/test/ |
D | test_zipfile.py | 605 with zipfile.ZipFile(TESTFN2, "w", strict_timestamps=False) as zipfp: 637 with zipfile.ZipFile(TESTFN2, "w", strict_timestamps=False) as zipfp:
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 3860 a new ``strict_timestamps`` parameter at the cost of setting the timestamp
|