HomeSort by relevance Sort by last modified time
    Searched refs:__cached__ (Results 1 - 12 of 12) sorted by null

  /external/python/cpython3/Lib/
site.py 100 """Set all module __file__ and __cached__ attributes to an absolute path"""
110 m.__cached__ = os.path.abspath(m.__cached__)
566 # fix __file__ and __cached__ of already imported modules too.
runpy.py 80 __cached__ = cached,
177 __cached__
trace.py 710 '__cached__': None,
inspect.py 67 __cached__ pathname to byte compiled file
    [all...]
  /external/python/cpython3/Lib/test/test_import/
__init__.py 837 # Modules now also have an __cached__ that points to the pyc file.
840 self.assertEqual(m.__cached__, os.path.join(os.curdir, pyc_file))
846 # without the tag), it is importable. The __cached__ of the imported
855 self.assertEqual(m.__cached__,
    [all...]
  /external/python/cpython3/Lib/importlib/
_bootstrap.py 354 corresponds to the `__cached__` attribute.
489 cached = module.__cached__
559 # __file__/__cached__
567 if override or getattr(module, '__cached__', None) is None:
570 module.__cached__ = spec.cached
    [all...]
  /external/python/cpython3/Lib/test/test_importlib/source/
test_file_loader.py 188 mod.__cached__)
225 self.assertEqual(mod.__cached__, compiled)
  /external/python/cpython3/Lib/test/test_importlib/
test_abc.py 683 source = (b"_ = '::'.join([__name__, __file__, __cached__, __package__, "
762 self.assertEqual(module.__cached__, self.cached)
775 module.__cached__ = self.cached
824 # __path__ (for packages), __file__, and __cached__.
    [all...]
test_util.py 114 self.assertEqual(module.__cached__, spec.cached)
  /external/tensorflow/tensorflow/tools/docs/
parser.py     [all...]
  /external/python/cpython3/Lib/test/
test_pydoc.py 585 filename = os.__cached__
    [all...]
test_inspect.py     [all...]

Completed in 1632 milliseconds