Searched refs:loader_details (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/test/test_importlib/source/ |
D | test_finder.py | 42 loader_details = [(self.machinery.SourceFileLoader, 46 return self.machinery.FileFinder(root, *loader_details)
|
/third_party/python/Lib/importlib/ |
D | _bootstrap_external.py | 1485 def __init__(self, path, *loader_details): argument 1490 for loader, suffixes in loader_details: 1610 def path_hook(cls, *loader_details): argument 1623 return cls(path, *loader_details)
|
/third_party/python/Doc/library/ |
D | importlib.rst | 1207 .. class:: FileFinder(path, *loader_details) 1215 The *loader_details* argument is a variable number of 2-item tuples each 1253 .. classmethod:: path_hook(*loader_details) 1257 path argument given to the closure directly and *loader_details* 1837 loader_details = (importlib.machinery.SourceFileLoader, 1848 sys.path_hooks.append(SpamPathEntryFinder.path_hook(loader_details))
|
/third_party/node/tools/ |
D | test.py | 53 loader_details = (machinery.SourceFileLoader, machinery.SOURCE_SUFFIXES) 54 spec = machinery.FileFinder(path, loader_details).find_spec(name)
|