Home
last modified time | relevance | path

Searched refs:loader_details (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Lib/test/test_importlib/source/
Dtest_finder.py42 loader_details = [(self.machinery.SourceFileLoader,
46 return self.machinery.FileFinder(root, *loader_details)
/external/python/cpython3/Lib/importlib/
D_bootstrap_external.py1401 def __init__(self, path, *loader_details): argument
1406 for loader, suffixes in loader_details:
1518 def path_hook(cls, *loader_details): argument
1531 return cls(path, *loader_details)
/external/python/cpython3/Doc/library/
Dimportlib.rst1138 .. class:: FileFinder(path, \*loader_details)
1146 The *loader_details* argument is a variable number of 2-item tuples each
1181 .. classmethod:: path_hook(\*loader_details)
1185 path argument given to the closure directly and *loader_details*
1742 loader_details = (importlib.machinery.SourceFileLoader,
1753 sys.path_hooks.append(SpamPathEntryFinder.path_hook(loader_details))