imp
 

This module provides the components needed to build your own
__import__ function.  Undocumented functions are obsolete.


 Functions
                                                                                                                                                                                                                               
find_module(no arg info)
find_module(name, [path]) -> (file, filename, (suffix, mode, type))
Search for a module.  If path is omitted or None, search for a
built-in, frozen or special module and continue search in sys.path.
The module name cannot contain '.'; to search for a submodule of a
package, pass the submodule name and the package's __path__.
get_frozen_object(no arg info)
no doc string
get_magic(no arg info)
get_magic() -> string
Return the magic number for .pyc or .pyo files.
get_suffixes(no arg info)
get_suffixes() -> [(suffix, mode, type), ...]
Return a list of (suffix, mode, type) tuples describing the files
that find_module() looks for.
init_builtin(no arg info)
no doc string
init_frozen(no arg info)
no doc string
is_builtin(no arg info)
no doc string
is_frozen(no arg info)
no doc string
load_compiled(no arg info)
no doc string
load_dynamic(no arg info)
no doc string
load_module(no arg info)
load_module(name, file, filename, (suffix, mode, type)) -> module
Load a module, given information returned by find_module().
The module name must include the full package name, if any.
load_package(no arg info)
no doc string
load_source(no arg info)
no doc string
new_module(no arg info)
new_module(name) -> module
Create a new module.  Do not enter it in sys.modules.
The module name must include the full package name, if any.