2009-01-22 22:43:07 +00:00
|
|
|
"""The machinery of importlib: finders, loaders, hooks, etc."""
|
|
|
|
|
2012-05-11 16:58:42 +00:00
|
|
|
import _imp
|
|
|
|
|
|
|
|
from ._bootstrap import (SOURCE_SUFFIXES, DEBUG_BYTECODE_SUFFIXES,
|
2012-08-10 17:47:54 +00:00
|
|
|
OPTIMIZED_BYTECODE_SUFFIXES, BYTECODE_SUFFIXES,
|
|
|
|
EXTENSION_SUFFIXES)
|
2009-01-22 22:43:07 +00:00
|
|
|
from ._bootstrap import BuiltinImporter
|
|
|
|
from ._bootstrap import FrozenImporter
|
2012-08-02 11:45:24 +00:00
|
|
|
from ._bootstrap import WindowsRegistryFinder
|
2009-02-05 02:52:57 +00:00
|
|
|
from ._bootstrap import PathFinder
|
2012-04-22 23:58:33 +00:00
|
|
|
from ._bootstrap import FileFinder
|
|
|
|
from ._bootstrap import SourceFileLoader
|
2012-04-25 00:31:37 +00:00
|
|
|
from ._bootstrap import SourcelessFileLoader
|
2012-04-22 23:58:33 +00:00
|
|
|
from ._bootstrap import ExtensionFileLoader
|
2012-05-11 16:58:42 +00:00
|
|
|
|
2012-07-18 13:14:57 +00:00
|
|
|
|
|
|
|
def all_suffixes():
|
|
|
|
"""Returns a list of all recognized module suffixes for this process"""
|
|
|
|
return SOURCE_SUFFIXES + BYTECODE_SUFFIXES + EXTENSION_SUFFIXES
|