Home
last modified time | relevance | path

Searched refs:InspectLoader (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/importlib/
Dabc.py166 class InspectLoader(Loader): class
216 _register(InspectLoader, machinery.BuiltinImporter, machinery.FrozenImporter)
219 class ExecutionLoader(InspectLoader):
/third_party/python/Lib/test/test_importlib/
Dtest_abc.py87 class InspectLoader(InheritanceTests): class
94 ) = test_util.test_both(InspectLoader, abc=abc)
258 class InspectLoader(Loader): class
267 SPLIT_IL = make_abc_subclasses(InspectLoader)
288 class ExecutionLoader(InspectLoader):
/third_party/python/Doc/library/
Dimportlib.rst237 +-- InspectLoader |
590 .. class:: InspectLoader
607 single: universal newlines; importlib.abc.InspectLoader.get_source method
665 An abstract base class which inherits from :class:`InspectLoader` that,
783 Concrete implementation of :meth:`InspectLoader.get_code`.
800 Concrete implementation of :meth:`InspectLoader.get_source`.
804 Concrete implementation of :meth:`InspectLoader.is_package`. A module
1117 :class:`importlib.abc.InspectLoader` ABCs.
1131 :class:`importlib.abc.InspectLoader` ABCs.
1538 :meth:`importlib.abc.InspectLoader.get_source`).
[all …]
/third_party/python/Doc/whatsnew/
D3.4.rst983 The :class:`~importlib.abc.InspectLoader` ABC defines a new method,
984 :meth:`~importlib.abc.InspectLoader.source_to_code` that accepts source
989 :class:`~importlib.abc.InspectLoader` also now has a default implementation
990 for the :meth:`~importlib.abc.InspectLoader.get_code` method. However,
1009 the :class:`.InspectLoader` ABC, which means that ``runpy`` and
1015 useful for implementing :meth:`.InspectLoader.get_source` methods.
2090 :meth:`importlib.abc.InspectLoader.load_module`,
2096 :meth:`importlib.abc.InspectLoader.exec_module`
D3.5.rst1269 The :func:`abc.InspectLoader.source_to_code() <importlib.abc.InspectLoader.source_to_code>`
/third_party/python/Misc/NEWS.d/
D3.5.0a1.rst3665 importlib.abc.InspectLoader.source_to_code() is now a staticmethod.
/third_party/python/Misc/
DHISTORY4871 importlib.abc.InspectLoader ABC, allowing for namespace packages to work with
4913 - Issue #18089: Implement importlib.abc.InspectLoader.load_module.
4936 - Issue #18072: Implement importlib.abc.InspectLoader.get_code() and
5644 - Issue #15627: Add the importlib.abc.InspectLoader.source_to_code() method.