Home
last modified time | relevance | path

Searched refs:path_hook (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Lib/test/test_importlib/source/
Dtest_path_hook.py12 def path_hook(self): member in PathHookTest
13 return self.machinery.FileFinder.path_hook((self.machinery.SourceFileLoader,
18 self.assertTrue(hasattr(self.path_hook()(mapping['.root']),
23 self.assertTrue(hasattr(self.path_hook()(mapping['.root']),
28 self.assertTrue(hasattr(self.path_hook()(''), 'find_spec'))
32 self.assertTrue(hasattr(self.path_hook()(''), 'find_module'))
/third_party/python/Lib/test/test_importlib/
Dtest_threaded_import.py163 def path_hook(path): function
166 sys.path_hooks.insert(0, path_hook)
176 sys.path_hooks.remove(path_hook)
/third_party/python/Tools/importbench/
Dimportbench.py72 sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader))
108 sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader))
142 sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader))
/third_party/python/Lib/test/test_importlib/extension/
Dtest_path_hook.py15 return self.machinery.FileFinder.path_hook(
/third_party/python/Lib/
Dpkgutil.py419 for path_hook in sys.path_hooks:
421 importer = path_hook(path_item)
/third_party/python/Lib/test/test_importlib/import_/
Dtest_path.py104 self.machinery.FileFinder.path_hook(
/third_party/python/Lib/importlib/
D_bootstrap_external.py1610 def path_hook(cls, *loader_details): member in FileFinder
1676 sys.path_hooks.extend([FileFinder.path_hook(*supported_loaders)])
/third_party/python/Doc/library/
Dimportlib.rst1253 .. classmethod:: path_hook(*loader_details)
1848 sys.path_hooks.append(SpamPathEntryFinder.path_hook(loader_details))
/third_party/python/Doc/
Dglossary.rst950 A callable on the :data:`sys.path_hook` list which returns a :term:`path