Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/importlib/
Dabc.py199 class InspectLoader(Loader): class
249 _register(InspectLoader, machinery.BuiltinImporter, machinery.FrozenImporter)
252 class ExecutionLoader(InspectLoader):
/external/python/cpython3/Lib/test/test_importlib/
Dtest_abc.py86 class InspectLoader(InheritanceTests): class
93 ) = test_util.test_both(InspectLoader, abc=abc)
255 class InspectLoader(Loader): class
264 SPLIT_IL = make_abc_subclasses(InspectLoader)
285 class ExecutionLoader(InspectLoader):
/external/python/cpython3/Doc/library/
Dimportlib.rst237 +-- InspectLoader |
577 .. class:: InspectLoader
594 single: universal newlines; importlib.abc.InspectLoader.get_source method
652 An abstract base class which inherits from :class:`InspectLoader` that,
770 Concrete implementation of :meth:`InspectLoader.get_code`.
787 Concrete implementation of :meth:`InspectLoader.get_source`.
791 Concrete implementation of :meth:`InspectLoader.is_package`. A module
1013 :class:`importlib.abc.InspectLoader` ABCs.
1027 :class:`importlib.abc.InspectLoader` ABCs.
1426 :meth:`importlib.abc.InspectLoader.get_source`).
[all …]
/external/python/cpython3/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>`
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst3665 importlib.abc.InspectLoader.source_to_code() is now a staticmethod.
/external/python/cpython3/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.