mirror of
https://github.com/python/cpython.git
synced 2025-07-14 14:55:17 +00:00

importlib.machinery that provide the suffix details for import. The attributes were not put on imp so as to compartmentalize everything importlib needs for setting up imports in importlib.machinery. This also led to an indirect deprecation of inspect.getmoduleinfo() as it directly returned imp.get_suffix's returned tuple which no longer makes sense.
15 lines
545 B
Python
15 lines
545 B
Python
"""The machinery of importlib: finders, loaders, hooks, etc."""
|
|
|
|
import _imp
|
|
|
|
from ._bootstrap import (SOURCE_SUFFIXES, DEBUG_BYTECODE_SUFFIXES,
|
|
OPTIMIZED_BYTECODE_SUFFIXES, BYTECODE_SUFFIXES)
|
|
from ._bootstrap import BuiltinImporter
|
|
from ._bootstrap import FrozenImporter
|
|
from ._bootstrap import PathFinder
|
|
from ._bootstrap import FileFinder
|
|
from ._bootstrap import SourceFileLoader
|
|
from ._bootstrap import SourcelessFileLoader
|
|
from ._bootstrap import ExtensionFileLoader
|
|
|
|
EXTENSION_SUFFIXES = _imp.extension_suffixes()
|