Home
last modified time | relevance | path

Searched refs:PathFinder (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython3/Lib/test/test_importlib/import_/
Dtest_path.py127 self.machinery.PathFinder.find_spec('whatever', [path]))
131 spec = self.machinery.PathFinder.find_spec('whatever', [path])
143 self.machinery.PathFinder.find_spec('whatever', [path]))
147 spec = self.machinery.PathFinder.find_spec('whatever', [path])
158 self.machinery.PathFinder.find_spec('whatever', [path]))
162 got = self.machinery.PathFinder.find_spec('whatever', [path])
185 self.assertIsNone(self.machinery.PathFinder.find_spec('whatever'))
198 self.machinery.PathFinder.invalidate_caches()
205 self.machinery.PathFinder.invalidate_caches()
211 return self.machinery.PathFinder.find_module(*args, **kwargs)
[all …]
/external/python/cpython3/Tools/importbench/
Dimportbench.py69 sys.meta_path.append(importlib.machinery.PathFinder)
105 sys.meta_path.append(importlib.machinery.PathFinder)
139 sys.meta_path.append(importlib.machinery.PathFinder)
/external/python/cpython3/Lib/importlib/
Dmachinery.py12 from ._bootstrap_external import PathFinder
Dabc.py85 machinery.PathFinder, machinery.WindowsRegistryFinder)
D_bootstrap_external.py1245 class PathFinder: class
1637 sys.meta_path.append(PathFinder)
/external/python/cpython3/Lib/
Dmodulefinder.py60 importlib.machinery.PathFinder.invalidate_caches()
62 spec = importlib.machinery.PathFinder.find_spec(name, path)
/external/python/jinja/tests/
Dtest_loader.py361 spec = importlib.machinery.PathFinder.find_spec(name)
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b4.rst17 Fix a bug that causes PathFinder to appear twice on sys.meta_path. Patch by
D3.8.0a1.rst1312 Fix a bug that causes PathFinder to appear twice on sys.meta_path. Patch by
/external/python/cpython3/Doc/reference/
Dimport.rst714 (:class:`~importlib.machinery.PathFinder`), searches an :term:`import path`,
792 based finder's :meth:`~importlib.machinery.PathFinder.find_spec` method as
794 :meth:`~importlib.machinery.PathFinder.find_spec` is given, it will be a
828 :meth:`~importlib.machinery.PathFinder.find_spec` method will store ``None``
844 :meth:`importlib.machinery.PathFinder.find_spec` will be the actual current
/external/python/cpython3/Doc/library/
Dimportlib.metadata.rst227 The default ``PathFinder`` for Python includes a hook that calls into
Dimportlib.rst316 by :class:`PathFinder`. This ABC is a subclass of :class:`Finder` for
366 cache used by the finder. Used by :meth:`PathFinder.invalidate_caches`
1087 .. class:: PathFinder
1740 SpamMetaPathFinder = importlib.machinery.PathFinder
/external/python/cpython3/Doc/whatsnew/
D3.4.rst2082 :meth:`importlib.machinery.PathFinder.find_module` is replaced by
2083 :meth:`importlib.machinery.PathFinder.find_spec`;
2337 * :class:`importlib.machinery.PathFinder` now passes on the current working
D3.7.rst2385 * :meth:`importlib.machinery.PathFinder.invalidate_caches` -- which implicitly
/external/error_prone/javac/
Djavac-9+181-r4173-1.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META- ...
/external/dagger2/java/dagger/internal/codegen/bootstrap/
Dbootstrap_compiler_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties META-INF ...
/external/dagger2/java/dagger/internal/codegen/kythe/
Dkythe_plugin_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com ...
/external/python/cpython3/Misc/
DHISTORY3700 - Issue #18416: importlib.machinery.PathFinder now treats '' as the cwd and
7774 importlib.machinery.PathFinder.