importlib.machinery.ExtensionFileLoader.create_module()

create_module(spec) Creates the module object from the given specification in accordance with

2016-10-07 17:34:42
importlib.abc.SourceLoader.set_data()

set_data(path, data) Optional abstract method which writes the specified bytes to a file path. Any intermediate directories

2016-10-07 17:34:40
importlib.util.resolve_name()

importlib.util.resolve_name(name, package) Resolve a relative module name to an absolute one. If

2016-10-07 17:34:53
importlib.machinery.ModuleSpec

class importlib.machinery.ModuleSpec(name, loader, *, origin=None, loader_state=None, is_package=None) A specification for a

2016-10-07 17:34:45
importlib.machinery.FileFinder.path

path The path the finder will search in.

2016-10-07 17:34:44
importlib.abc.FileLoader

class importlib.abc.FileLoader(fullname, path) An abstract base class which inherits from ResourceLoader and

2016-10-07 17:34:30
pkgutil.ImpLoader

class pkgutil.ImpLoader(fullname, file, filename, etc)

2016-10-07 17:40:44
importlib.machinery.SourceFileLoader.is_package()

is_package(fullname) Return true if path appears to be for a package.

2016-10-07 17:34:48
importlib.abc.InspectLoader.get_source()

abstractmethod get_source(fullname) An abstract method to return the source of a module. It is returned as a text string using

2016-10-07 17:34:33
importlib.machinery.SourceFileLoader.set_data()

set_data(path, data) Concrete implementation of importlib.abc.SourceLoader.set_data().

2016-10-07 17:34:49