Searched refs:ModuleFinder (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | modulefinder.rst | 13 This module provides a :class:`ModuleFinder` class that can be used to determine 30 .. class:: ModuleFinder(path=None, debug=0, excludes=[], replace_paths=[]) 60 Example usage of :class:`ModuleFinder` 80 from modulefinder import ModuleFinder 82 finder = ModuleFinder()
|
/external/python/cpython2/Doc/library/ |
D | modulefinder.rst | 15 This module provides a :class:`ModuleFinder` class that can be used to determine 33 .. class:: ModuleFinder([path=None, debug=0, excludes=[], replace_paths=[]]) 63 Example usage of :class:`ModuleFinder` 83 from modulefinder import ModuleFinder 85 finder = ModuleFinder()
|
/external/python/setuptools/setuptools/tests/ |
D | test_find_py_modules.py | 6 from setuptools.discovery import FlatLayoutModuleFinder, ModuleFinder 13 return set(ModuleFinder.find(str(path), *args, **kwargs))
|
/external/python/cpython3/Lib/test/ |
D | test_modulefinder.py | 322 …self, info, report=False, debug=0, replace_paths=[], modulefinder_class=modulefinder.ModuleFinder): 425 class CheckLoadModuleApi(modulefinder.ModuleFinder):
|
/external/python/setuptools/setuptools/ |
D | discovery.py | 169 class ModuleFinder(_Finder): class 242 class FlatLayoutModuleFinder(ModuleFinder): 404 self.dist.py_modules = ModuleFinder.find(src_dir)
|
/external/python/cpython2/Lib/test/ |
D | test_modulefinder.py | 231 mf = modulefinder.ModuleFinder(path=TEST_PATH)
|
/external/mesa3d/scons/ |
D | custom.py | 118 finder = modulefinder.ModuleFinder(path=path)
|
/external/python/cpython3/Lib/ |
D | modulefinder.py | 122 class ModuleFinder: class 664 mf = ModuleFinder(path, debug, exclude)
|
/external/python/cpython2/Lib/ |
D | modulefinder.py | 94 class ModuleFinder: class 658 mf = ModuleFinder(path, debug, exclude)
|
/external/python/cpython2/Tools/freeze/ |
D | freeze.py | 345 mf = modulefinder.ModuleFinder(path, debug, exclude, replace_paths)
|
/external/python/cpython3/Tools/freeze/ |
D | freeze.py | 349 mf = modulefinder.ModuleFinder(path, debug, exclude, replace_paths)
|
/external/python/cpython2/Lib/plat-mac/ |
D | bundlebuilder.py | 633 mf = modulefinder.ModuleFinder(excludes=self.excludeModules)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a4.rst | 636 and the initializer for :class:`modulefinder.ModuleFinder` now has immutable
|
D | 3.5.0a1.rst | 3078 Add missing kwonlyargcount argument to ModuleFinder.replace_paths_in_code().
|
/external/python/cpython3/Misc/ |
D | HISTORY | 1561 ModuleFinder.replace_paths_in_code().
|