ยปCore Development>Code coverage>Lib/importlib/machinery.py

Python code coverage for Lib/importlib/machinery.py

#countcontent
1n/a"""The machinery of importlib: finders, loaders, hooks, etc."""
2n/a
3n/aimport _imp
4n/a
5n/afrom ._bootstrap import ModuleSpec
6n/afrom ._bootstrap import BuiltinImporter
7n/afrom ._bootstrap import FrozenImporter
8n/afrom ._bootstrap_external import (SOURCE_SUFFIXES, DEBUG_BYTECODE_SUFFIXES,
9n/a OPTIMIZED_BYTECODE_SUFFIXES, BYTECODE_SUFFIXES,
10n/a EXTENSION_SUFFIXES)
11n/afrom ._bootstrap_external import WindowsRegistryFinder
12n/afrom ._bootstrap_external import PathFinder
13n/afrom ._bootstrap_external import FileFinder
14n/afrom ._bootstrap_external import SourceFileLoader
15n/afrom ._bootstrap_external import SourcelessFileLoader
16n/afrom ._bootstrap_external import ExtensionFileLoader
17n/a
18n/a
19n/adef all_suffixes():
20n/a """Returns a list of all recognized module suffixes for this process"""
21n/a return SOURCE_SUFFIXES + BYTECODE_SUFFIXES + EXTENSION_SUFFIXES