Searched refs:FileFinder (Results 1 – 23 of 23) sorted by relevance
/external/python/cpython3/Lib/test/test_importlib/source/ |
D | test_finder.py | 46 return self.machinery.FileFinder(root, *loader_details) 128 finder = self.machinery.FileFinder('', (self.machinery.SourceFileLoader, 140 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 | 23 return self.machinery.FileFinder(path,
|
/external/python/cpython3/Tools/importbench/ |
D | importbench.py | 72 sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader)) 108 sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader)) 142 sys.path_hooks.append(importlib.machinery.FileFinder.path_hook(loader))
|
/external/python/cpython3/Lib/importlib/ |
D | machinery.py | 13 from ._bootstrap_external import FileFinder
|
D | abc.py | 133 _register(PathEntryFinder, machinery.FileFinder)
|
D | _bootstrap_external.py | 1310 class FileFinder: class 1561 sys.path_hooks.extend([FileFinder.path_hook(*supported_loaders)])
|
/external/python/cpython3/Lib/test/test_importlib/extension/ |
D | test_path_hook.py | 15 return self.machinery.FileFinder.path_hook(
|
D | test_finder.py | 15 importer = self.machinery.FileFinder(util.EXTENSIONS.path,
|
D | test_case_sensitivity.py | 19 finder = self.machinery.FileFinder(util.EXTENSIONS.path,
|
D | test_loader.py | 91 finder = self.machinery.FileFinder(None)
|
/external/python/cpython3/Doc/library/ |
D | pkgutil.rst | 158 implementations for :class:`importlib.machinery.FileFinder` and 197 implementations for :class:`importlib.machinery.FileFinder` and
|
D | importlib.rst | 1096 .. class:: FileFinder(path, \*loader_details) 1142 An instance of :class:`FileFinder` is returned by the closure using the 1610 finder = importlib.machinery.FileFinder(path, (lazy_loader, suffixes)) 1693 SpamPathEntryFinder = importlib.machinery.FileFinder
|
/external/python/cpython3/Lib/test/test_importlib/import_/ |
D | test_path.py | 103 self.machinery.FileFinder.path_hook(
|
/external/python/cpython3/Lib/ |
D | pkgutil.py | 185 importlib.machinery.FileFinder, _iter_file_finder_modules)
|
/external/python/cpython3/Lib/test/ |
D | test_pkgutil.py | 308 self.assertIsInstance(finder, importlib.machinery.FileFinder)
|
D | test_runpy.py | 583 importlib.machinery.FileFinder)
|
/external/python/setuptools/pkg_resources/ |
D | __init__.py | 2064 register_finder(importlib_machinery.FileFinder, find_on_path) 2209 register_namespace_handler(importlib_machinery.FileFinder, file_ns_handler)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.2rc1.rst | 176 Fix the doc comment for FileFinder.find_spec().
|
D | 3.6.0a1.rst | 138 Fix the doc comment for FileFinder.find_spec().
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 2433 :meth:`~importlib.machinery.FileFinder.find_spec` will return ``None``
|
D | 3.3.rst | 719 In terms of finders, :class:`importlib.machinery.FileFinder` exposes the
|
/external/python/cpython3/Misc/ |
D | HISTORY | 3474 importlib.machinery.FileFinder. 3695 - Issue #18810: Shift stat calls in importlib.machinery.FileFinder such that 3701 importlib.machinery.FileFinder no longer special-cases '' to '.'. This leads 3704 does affect -m/runpy). It also allows FileFinder to be more consistent by not 4527 - Issue #16730: importlib.machinery.FileFinder now no longers raises an 6636 - Issue #14846: `importlib.FileFinder` now handles the case where the directory 6912 importlib.machinery.FileFinder (similar to the way it already handled 7851 - Issue #14605: Add importlib.abc.FileLoader, importlib.machinery.(FileFinder,
|