class importlib.abc.FileLoader(fullname, path) An abstract base class which inherits from ResourceLoader and
importlib.machinery.BYTECODE_SUFFIXES A list of strings representing the recognized file suffixes for bytecode modules (including
find_spec(fullname, target=None) Attempt to find the spec to handle fullname within path.
path The path the finder will search in.
importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES A list of strings representing the file suffixes for optimized bytecode modules
path_stats(path) Concrete implementation of importlib.abc.SourceLoader.path_stats().
classmethod factory(loader) A static method which returns a callable that creates a lazy loader. This is meant to be used in
static source_to_code(data, path='') Create a code object from Python source. The data
get_code(fullname) Returns None as extension modules lack a code object.
name The name of the module the loader can handle.
Page 11 of 15