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