Home
last modified time | relevance | path

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

/third_party/python/Lib/importlib/
Dabc.py64 class MetaPathFinder(metaclass=abc.ABCMeta): class
97 _register(MetaPathFinder, machinery.BuiltinImporter, machinery.FrozenImporter,
/third_party/python/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):
/third_party/python/Lib/test/
Dtest_doctest.py2702 class TestImporter(importlib.abc.MetaPathFinder, importlib.abc.ResourceLoader):
/third_party/python/Lib/importlib/metadata/
D__init__.py26 from importlib.abc import MetaPathFinder
693 class DistributionFinder(MetaPathFinder):
/third_party/python/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
/third_party/python/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.rst1068 :meth:`~importlib.abc.MetaPathFinder.find_spec` methods called to see if one
1070 :meth:`~importlib.abc.MetaPathFinder.find_spec` method is called with at
1078 :class:`importlib.abc.MetaPathFinder`
1083 :meth:`~importlib.abc.MetaPathFinder.find_spec` should return
1090 :meth:`~importlib.abc.MetaPathFinder.find_module`.
1092 have a :meth:`~importlib.abc.MetaPathFinder.find_spec` method.
Dimportlib.metadata.rst310 The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the
/third_party/python/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)
/third_party/python/Doc/whatsnew/
D3.10.rst1632 * The use of :meth:`importlib.abc.MetaPathFinder.find_module` and
1635 :meth:`importlib.abc.MetaPathFinder.find_spec` and
1648 :meth:`importlib.abc.MetaPathFinder.find_module` (
1653 :meth:`importlib.abc.MetaPathFinder.find_module` ),
1664 :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
/third_party/python/Doc/
Dglossary.rst767 See :class:`importlib.abc.MetaPathFinder` for the methods that meta path
/third_party/python/Misc/
DHISTORY2702 - Issue #19719: Make importlib.abc.MetaPathFinder.find_module(),