Home
last modified time | relevance | path

Searched refs:source_mtime (Results 1 - 5 of 5) sorted by relevance

/third_party/python/Lib/distutils/
H A Ddep_util.py86 source_mtime = os.stat(source)[ST_MTIME]
87 if source_mtime > target_mtime:
/third_party/python/Lib/test/test_importlib/
H A Dtest_abc.py728 source_mtime = 1 variable in SourceLoader
738 data.extend(self.init._pack_uint32(self.source_mtime))
757 return {'mtime': self.source_mtime, 'size': self.source_size}
906 data.extend(self.init._pack_uint32(self.loader.source_mtime))
928 for source_mtime in (0, 2):
929 assert source_mtime != self.loader.source_mtime
930 original = self.loader.source_mtime
931 self.loader.source_mtime = source_mtime
[all...]
/third_party/python/Lib/importlib/
H A D_bootstrap_external.py675 def _validate_timestamp_pyc(data, source_mtime, source_size, name,
682 *source_mtime* is the last modified timestamp of the source file.
694 if _unpack_uint32(data[8:12]) != (source_mtime & 0xFFFFFFFF):
1015 source_mtime = None
1030 source_mtime = int(st['mtime'])
1059 source_mtime,
1077 source_mtime is not None):
1083 data = _code_to_timestamp_pyc(code_object, source_mtime,
/third_party/python/Lib/
H A Dzipimport.py664 source_mtime, source_size = \
667 if source_mtime:
670 if (not _eq_mtime(_unpack_uint32(data[8:12]), source_mtime) or
/third_party/python/Lib/test/test_importlib/source/
H A Dtest_file_loader.py645 source_mtime = os.path.getmtime(mapping['_temp'])
646 source_timestamp = self.importlib._pack_uint32(source_mtime)

Completed in 7 milliseconds