Searched refs:FileFinder (Results 1 – 25 of 26) sorted by relevance
12
/external/python/cpython3/Lib/test/test_importlib/source/ |
D | test_finder.py | 44 return self.machinery.FileFinder(root, *loader_details) 126 finder = self.machinery.FileFinder('', (self.machinery.SourceFileLoader, 138 finder = self.machinery.FileFinder('', (self.machinery.SourceFileLoader,
|
D | test_path_hook.py | 13 return self.machinery.FileFinder.path_hook((self.machinery.SourceFileLoader,
|
D | test_case_sensitivity.py | 25 return self.machinery.FileFinder(path,
|
/external/python/cpython3/Tools/importbench/ |
D | importbench.py | 73 sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader)) 109 sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader)) 143 sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader))
|
/external/python/cpython3/Lib/importlib/ |
D | machinery.py | 11 from ._bootstrap_external import FileFinder
|
D | abc.py | 77 _register(PathEntryFinder, machinery.FileFinder)
|
D | _bootstrap_external.py | 1589 class FileFinder: class 1822 sys.path_hooks.extend([FileFinder.path_hook(*supported_loaders)])
|
/external/python/cpython3/Lib/test/test_importlib/extension/ |
D | test_path_hook.py | 17 return self.machinery.FileFinder.path_hook(
|
D | test_finder.py | 43 importer = self.machinery.FileFinder(util.EXTENSIONS.path, *loaders)
|
D | test_case_sensitivity.py | 20 finder = self.machinery.FileFinder(util.EXTENSIONS.path,
|
D | test_loader.py | 123 finder = self.machinery.FileFinder(None) 211 finder = self.machinery.FileFinder(None)
|
/external/python/cpython3/Lib/sysconfig/ |
D | __init__.py | 348 from importlib.machinery import FileFinder, SourceFileLoader, SOURCE_SUFFIXES 350 spec = FileFinder(path, (SourceFileLoader, SOURCE_SUFFIXES)).find_spec(name)
|
/external/python/cpython3/Lib/test/test_importlib/import_/ |
D | test_path.py | 104 self.machinery.FileFinder.path_hook(
|
/external/python/cpython3/Lib/ |
D | pkgutil.py | 171 importlib.machinery.FileFinder, _iter_file_finder_modules)
|
/external/python/cpython3/Doc/library/ |
D | pkgutil.rst | 139 implementations for :class:`importlib.machinery.FileFinder` and 178 implementations for :class:`importlib.machinery.FileFinder` and
|
D | importlib.rst | 938 .. class:: FileFinder(path, *loader_details) 980 An instance of :class:`FileFinder` is returned by the closure using the 1512 finder = importlib.machinery.FileFinder(path, (lazy_loader, suffixes)) 1633 SpamPathEntryFinder = importlib.machinery.FileFinder
|
/external/python/cpython3/Lib/test/ |
D | test_pkgutil.py | 476 self.assertIsInstance(finder, importlib.machinery.FileFinder)
|
D | test_runpy.py | 586 importlib.machinery.FileFinder)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.2rc1.rst | 242 Fix the doc comment for FileFinder.find_spec().
|
D | 3.6.0a1.rst | 171 Fix the doc comment for FileFinder.find_spec().
|
D | 3.12.0a1.rst | 1403 ``FileFinder`` no longer inserts a dot in the path, e.g. ``/egg/./spam`` is
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.10.rst | 1682 :meth:`!importlib.machinery.FileFinder.find_module` ), and 1684 :meth:`!importlib.machinery.FileFinder.find_loader` )
|
D | 3.11.rst | 1908 * :meth:`!importlib.machinery.FileFinder.find_loader` 1909 * :meth:`!importlib.machinery.FileFinder.find_module`
|
D | 3.5.rst | 2434 :meth:`~importlib.machinery.FileFinder.find_spec` will return ``None``
|
D | 3.3.rst | 722 In terms of finders, :class:`importlib.machinery.FileFinder` exposes the
|
12