Home
last modified time | relevance | path

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

/third_party/python/Lib/importlib/
Dabc.py219 class ExecutionLoader(InspectLoader): class
253 _register(ExecutionLoader, machinery.ExtensionFileLoader)
256 class FileLoader(_bootstrap_external.FileLoader, ResourceLoader, ExecutionLoader):
265 class SourceLoader(_bootstrap_external.SourceLoader, ResourceLoader, ExecutionLoader):
/third_party/python/Lib/test/test_importlib/
Dtest_abc.py97 class ExecutionLoader(InheritanceTests): class
104 ) = test_util.test_both(ExecutionLoader, abc=abc)
288 class ExecutionLoader(InspectLoader): class
294 SPLIT_EL = make_abc_subclasses(ExecutionLoader)
/third_party/python/Doc/library/
Dimportlib.rst238 +-- ExecutionLoader --+
663 .. class:: ExecutionLoader
686 :class:`ExecutionLoader`, providing concrete implementations of
687 :meth:`ResourceLoader.get_data` and :meth:`ExecutionLoader.get_filename`.
722 :class:`ExecutionLoader`, requiring the implementation of:
725 * :meth:`ExecutionLoader.get_filename`
806 :meth:`ExecutionLoader.get_filename`) is a file named
1347 A concrete implementation of :class:`importlib.abc.ExecutionLoader` for
/third_party/python/Misc/
DHISTORY4937 importlib.abc.ExecutionLoader.get_code().
14115 - Add importlib.abc.ExecutionLoader to represent the PEP 302 protocol for