Home
last modified time | relevance | path

Searched refs:PathEntryFinder (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/importlib/
Dabc.py79 class PathEntryFinder(Finder): class
120 _register(PathEntryFinder, machinery.FileFinder)
/external/python/cpython3/Lib/test/test_importlib/
Dtest_abc.py69 class PathEntryFinder(InheritanceTests): class
76 ) = test_util.test_both(PathEntryFinder, abc=abc)
174 class PathEntryFinder: class
182 SPLIT = make_abc_subclasses(PathEntryFinder)
346 class PathEntrySpecFinder(cls.abc.PathEntryFinder):
/external/python/cpython3/Doc/reference/
Dimport.rst774 (:class:`~importlib.abc.PathEntryFinder`) for the
825 the :meth:`~importlib.abc.PathEntryFinder.find_spec` method.
827 :meth:`~importlib.abc.PathEntryFinder.find_spec` takes two argument, the
838 :meth:`~importlib.abc.PathEntryFinder.find_spec` replaced
839 :meth:`~importlib.abc.PathEntryFinder.find_loader` and
840 :meth:`~importlib.abc.PathEntryFinder.find_module`, both of which
848 :meth:`~importlib.abc.PathEntryFinder.find_loader` takes one argument, the
/external/python/cpython3/Doc/library/
Dimportlib.rst228 | +-- PathEntryFinder
242 Use :class:`MetaPathFinder` or :class:`PathEntryFinder` instead.
303 .. class:: PathEntryFinder
306 it bears some similarities to :class:`MetaPathFinder`, ``PathEntryFinder``
852 Calls :meth:`importlib.abc.PathEntryFinder.invalidate_caches` on all
862 A concrete implementation of :class:`importlib.abc.PathEntryFinder` which
/external/python/cpython3/Doc/whatsnew/
D3.4.rst2086 :meth:`importlib.abc.PathEntryFinder.find_loader` and
2087 :meth:`~importlib.abc.PathEntryFinder.find_module` are replaced by
2088 :meth:`importlib.abc.PathEntryFinder.find_spec`; all of the ``xxxLoader`` ABC
D3.3.rst715 :class:`importlib.abc.PathEntryFinder`, respectively. The old ABC of
/external/python/cpython3/Doc/
Dglossary.rst797 See :class:`importlib.abc.PathEntryFinder` for the methods that path entry
/external/python/cpython3/Misc/
DHISTORY2703 PathEntryFinder.find_loader(), and Loader.load_module() use PEP 451 APIs to