Searched refs:MetaPathFinder (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Lib/importlib/ |
H A D | abc.py | 23 'Loader', 'Finder', 'MetaPathFinder', 'PathEntryFinder', 49 implementations should derive from the more specific MetaPathFinder 57 "slated for removal in Python 3.12; use MetaPathFinder " 70 "MetaPathFinder.find_spec() or " 75 class MetaPathFinder(metaclass=abc.ABCMeta): class 93 warnings.warn("MetaPathFinder.find_module() is deprecated since Python " 94 "3.4 in favor of MetaPathFinder.find_spec() and is " 108 _register(MetaPathFinder, machinery.BuiltinImporter, machinery.FrozenImporter,
|
/third_party/python/Lib/test/test_importlib/ |
H A 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) 352 ##### MetaPathFinder concrete methods ########################################## 357 class MetaPathSpecFinder(cls.abc.MetaPathFinder):
|
H A D | test_lazy.py | 38 class TestingImporter(abc.MetaPathFinder, abc.Loader):
|
/third_party/python/Lib/test/ |
H A D | test_doctest.py | 2728 class TestImporter(importlib.abc.MetaPathFinder, importlib.abc.ResourceLoader):
|
/third_party/python/Lib/importlib/metadata/ |
H A D | __init__.py | 25 from importlib.abc import MetaPathFinder 731 class DistributionFinder(MetaPathFinder): 733 A MetaPathFinder capable of discovering installed distributions.
|
Completed in 7 milliseconds