Home
last modified time | relevance | path

Searched refs:ExecutionLoader (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Lib/importlib/
Dabc.py239 class ExecutionLoader(InspectLoader): class
273 _register(ExecutionLoader, machinery.ExtensionFileLoader)
276 class FileLoader(_bootstrap_external.FileLoader, ResourceLoader, ExecutionLoader):
285 class SourceLoader(_bootstrap_external.SourceLoader, ResourceLoader, ExecutionLoader):
/external/python/cpython3/Lib/test/test_importlib/
Dtest_abc.py98 class ExecutionLoader(InheritanceTests): class
105 ) = test_util.test_both(ExecutionLoader, abc=abc)
283 class ExecutionLoader(InspectLoader): class
289 SPLIT_EL = make_abc_subclasses(ExecutionLoader)
/external/python/cpython3/Doc/library/
Dimportlib.rst232 +-- ExecutionLoader --+
558 .. class:: ExecutionLoader
581 :class:`ExecutionLoader`, providing concrete implementations of
582 :meth:`ResourceLoader.get_data` and :meth:`ExecutionLoader.get_filename`.
617 :class:`ExecutionLoader`, requiring the implementation of:
620 * :meth:`ExecutionLoader.get_filename`
701 :meth:`ExecutionLoader.get_filename`) is a file named
997 A concrete implementation of :class:`importlib.abc.ExecutionLoader` for
/external/python/cpython3/Misc/
DHISTORY4937 importlib.abc.ExecutionLoader.get_code().
14115 - Add importlib.abc.ExecutionLoader to represent the PEP 302 protocol for