Searched refs:MetaPathFinder (Results 1 – 18 of 18) sorted by relevance
/third_party/python/Lib/importlib/ |
D | abc.py | 64 class MetaPathFinder(metaclass=abc.ABCMeta): class 97 _register(MetaPathFinder, machinery.BuiltinImporter, machinery.FrozenImporter,
|
/third_party/python/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):
|
/third_party/python/Lib/test/ |
D | test_doctest.py | 2702 class TestImporter(importlib.abc.MetaPathFinder, importlib.abc.ResourceLoader):
|
/third_party/python/Lib/importlib/metadata/ |
D | __init__.py | 26 from importlib.abc import MetaPathFinder 693 class DistributionFinder(MetaPathFinder):
|
/third_party/python/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
|
/third_party/python/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 | 1068 :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.
|
D | importlib.metadata.rst | 310 The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the
|
/third_party/python/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)
|
/third_party/python/Doc/whatsnew/ |
D | 3.10.rst | 1632 * 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`
|
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
|
/third_party/python/Doc/ |
D | glossary.rst | 767 See :class:`importlib.abc.MetaPathFinder` for the methods that meta path
|
/third_party/python/Misc/ |
D | HISTORY | 2702 - Issue #19719: Make importlib.abc.MetaPathFinder.find_module(),
|