Searched refs:MetaPathFinder (Results 1 – 22 of 22) sorted by relevance
/external/python/cpython3/Lib/importlib/ |
D | abc.py | 64 class MetaPathFinder(metaclass=abc.ABCMeta): class 97 _register(MetaPathFinder, machinery.BuiltinImporter, machinery.FrozenImporter,
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_abc.py | 57 class MetaPathFinder(InheritanceTests): class 65 ) = test_util.test_both(MetaPathFinder, abc=abc) 149 class MetaPathFinder: class 157 SPLIT = make_abc_subclasses(MetaPathFinder) 357 class MetaPathSpecFinder(cls.abc.MetaPathFinder):
|
D | test_lazy.py | 38 class TestingImporter(abc.MetaPathFinder, abc.Loader):
|
/external/rust/crates/grpcio-sys/grpc/tools/distrib/python/grpcio_tools/grpc_tools/ |
D | protoc.py | 145 class ProtoFinder(importlib.abc.MetaPathFinder):
|
/external/python/cpython3/Lib/test/ |
D | test_doctest.py | 2702 class TestImporter(importlib.abc.MetaPathFinder, importlib.abc.ResourceLoader):
|
/external/python/cpython3/Lib/importlib/metadata/ |
D | __init__.py | 26 from importlib.abc import MetaPathFinder 723 class DistributionFinder(MetaPathFinder):
|
/external/python/setuptools/setuptools/_vendor/importlib_metadata/ |
D | __init__.py | 30 from importlib.abc import MetaPathFinder 704 class DistributionFinder(MetaPathFinder):
|
/external/python/cpython3/Doc/reference/ |
D | import.rst | 284 :meth:`~importlib.abc.MetaPathFinder.find_spec()` which takes three arguments: 295 The :meth:`~importlib.abc.MetaPathFinder.find_spec()` method of meta path 326 The :meth:`~importlib.abc.MetaPathFinder.find_spec` method of meta path 327 finders replaced :meth:`~importlib.abc.MetaPathFinder.find_module`, which 333 Use of :meth:`~importlib.abc.MetaPathFinder.find_module` by the import system 427 :meth:`~importlib.abc.MetaPathFinder.find_spec` method would just return a 784 :meth:`~importlib.abc.MetaPathFinder.find_spec` protocol previously 928 :meth:`~importlib.abc.MetaPathFinder.find_spec` instead of returning
|
/external/python/pyfakefs/pyfakefs/ |
D | fake_filesystem_unittest.py | 46 from importlib.abc import Loader, MetaPathFinder 914 class DynamicPatcher(MetaPathFinder, Loader):
|
/external/python/cpython3/Doc/library/ |
D | importlib.rst | 233 | +-- MetaPathFinder 248 Use :class:`MetaPathFinder` or :class:`PathEntryFinder` instead. 261 Implement :meth:`MetaPathFinder.find_spec` or 265 .. class:: MetaPathFinder 321 it bears some similarities to :class:`MetaPathFinder`, ``PathEntryFinder`` 1116 :class:`importlib.abc.MetaPathFinder` and 1130 :class:`importlib.abc.MetaPathFinder` and 1144 implements the :class:`importlib.abc.MetaPathFinder` ABC. 1159 This class implements the :class:`importlib.abc.MetaPathFinder` ABC.
|
D | sys.rst | 1043 :meth:`~importlib.abc.MetaPathFinder.find_spec` methods called to see if one 1045 :meth:`~importlib.abc.MetaPathFinder.find_spec` method is called with at 1053 :class:`importlib.abc.MetaPathFinder` 1058 :meth:`~importlib.abc.MetaPathFinder.find_spec` should return 1065 :meth:`~importlib.abc.MetaPathFinder.find_module`. 1067 have a :meth:`~importlib.abc.MetaPathFinder.find_spec` method.
|
D | importlib.metadata.rst | 311 The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the
|
/external/python/jinja/tests/ |
D | test_loader.py | 356 class ImportHook(importlib.abc.MetaPathFinder, importlib.abc.Loader):
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0b3.rst | 418 ``MetaPathFinder``. (Patch by Himanshu Lakhara)
|
D | 3.6.6rc1.rst | 595 ``MetaPathFinder``. (Patch by Himanshu Lakhara)
|
D | 3.8.0a1.rst | 6556 ``MetaPathFinder``. (Patch by Himanshu Lakhara)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.10.rst | 1635 * The use of :meth:`importlib.abc.MetaPathFinder.find_module` and 1638 :meth:`importlib.abc.MetaPathFinder.find_spec` and 1651 :meth:`importlib.abc.MetaPathFinder.find_module` ( 1656 :meth:`importlib.abc.MetaPathFinder.find_module` ), 1667 :class:`importlib.abc.MetaPathFinder` and :class:`importlib.abc.PathEntryFinder`
|
D | 3.7.rst | 2007 :meth:`MetaPathFinder.find_module() <importlib.abc.MetaPathFinder.find_module>` 2009 :meth:`MetaPathFinder.find_spec() <importlib.abc.MetaPathFinder.find_spec>`)
|
D | 3.4.rst | 2084 :meth:`importlib.abc.MetaPathFinder.find_module` is replaced by 2085 :meth:`importlib.abc.MetaPathFinder.find_spec`;
|
D | 3.3.rst | 714 :class:`importlib.abc.MetaPathFinder` and
|
/external/python/cpython3/Doc/ |
D | glossary.rst | 767 See :class:`importlib.abc.MetaPathFinder` for the methods that meta path
|
/external/python/cpython3/Misc/ |
D | HISTORY | 2702 - Issue #19719: Make importlib.abc.MetaPathFinder.find_module(),
|