Home
last modified time | relevance | path

Searched refs:MetaPathFinder (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython3/Lib/importlib/
Dabc.py64 class MetaPathFinder(metaclass=abc.ABCMeta): class
97 _register(MetaPathFinder, machinery.BuiltinImporter, machinery.FrozenImporter,
/external/python/cpython3/Lib/test/test_importlib/
Dtest_abc.py57 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):
Dtest_lazy.py38 class TestingImporter(abc.MetaPathFinder, abc.Loader):
/external/rust/crates/grpcio-sys/grpc/tools/distrib/python/grpcio_tools/grpc_tools/
Dprotoc.py145 class ProtoFinder(importlib.abc.MetaPathFinder):
/external/python/cpython3/Lib/test/
Dtest_doctest.py2702 class TestImporter(importlib.abc.MetaPathFinder, importlib.abc.ResourceLoader):
/external/python/cpython3/Lib/importlib/metadata/
D__init__.py26 from importlib.abc import MetaPathFinder
723 class DistributionFinder(MetaPathFinder):
/external/python/setuptools/setuptools/_vendor/importlib_metadata/
D__init__.py30 from importlib.abc import MetaPathFinder
704 class DistributionFinder(MetaPathFinder):
/external/python/cpython3/Doc/reference/
Dimport.rst284 :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/
Dfake_filesystem_unittest.py46 from importlib.abc import Loader, MetaPathFinder
914 class DynamicPatcher(MetaPathFinder, Loader):
/external/python/cpython3/Doc/library/
Dimportlib.rst233 | +-- 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.
Dsys.rst1043 :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.
Dimportlib.metadata.rst311 The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the
/external/python/jinja/tests/
Dtest_loader.py356 class ImportHook(importlib.abc.MetaPathFinder, importlib.abc.Loader):
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b3.rst418 ``MetaPathFinder``. (Patch by Himanshu Lakhara)
D3.6.6rc1.rst595 ``MetaPathFinder``. (Patch by Himanshu Lakhara)
D3.8.0a1.rst6556 ``MetaPathFinder``. (Patch by Himanshu Lakhara)
/external/python/cpython3/Doc/whatsnew/
D3.10.rst1635 * 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`
D3.7.rst2007 :meth:`MetaPathFinder.find_module() <importlib.abc.MetaPathFinder.find_module>`
2009 :meth:`MetaPathFinder.find_spec() <importlib.abc.MetaPathFinder.find_spec>`)
D3.4.rst2084 :meth:`importlib.abc.MetaPathFinder.find_module` is replaced by
2085 :meth:`importlib.abc.MetaPathFinder.find_spec`;
D3.3.rst714 :class:`importlib.abc.MetaPathFinder` and
/external/python/cpython3/Doc/
Dglossary.rst767 See :class:`importlib.abc.MetaPathFinder` for the methods that meta path
/external/python/cpython3/Misc/
DHISTORY2702 - Issue #19719: Make importlib.abc.MetaPathFinder.find_module(),