importlib.abc.ExecutionLoader.get_filename()

abstractmethod get_filename(fullname) An abstract method that is to return the value of __file__ for the specified

2016-10-07 17:34:30
modulefinder.ModuleFinder.report()

report() Print a report to standard output that lists the modules imported by the script and their paths, as well as modules

2016-10-07 17:37:20
zipimport.zipimporter.get_filename()

get_filename(fullname) Return the value __file__ would be set to if the specified module was imported. Raise

2016-10-07 17:48:46
importlib.machinery.SourcelessFileLoader.get_code()

get_code(fullname) Returns the code object for name created from path.

2016-10-07 17:34:49
importlib.abc.SourceLoader.path_stats()

path_stats(path) Optional abstract method which returns a

2016-10-07 17:34:39
importlib.machinery.FileFinder.find_loader()

find_loader(fullname) Attempt to find the loader to handle fullname within path.

2016-10-07 17:34:44
zipimport.zipimporter.get_data()

get_data(pathname) Return the data associated with pathname. Raise

2016-10-07 17:48:46
zipimport.zipimporter

class zipimport.zipimporter(archivepath) Create a new zipimporter instance. archivepath must be a path to a ZIP file

2016-10-07 17:48:45
zipimport.zipimporter.get_source()

get_source(fullname) Return the source code for the specified module. Raise ZipImportError if the module couldn’t

2016-10-07 17:48:46
importlib.find_loader()

importlib.find_loader(name, path=None) Find the loader for a module, optionally within the specified path. If the module

2016-10-07 17:34:40