python_command provides modules to facilitate the creation of a Python
command. This is primarily used to create contexts for which scripts are to
be ran within.
The package is comprised of three modules:
name.jwp.python.command.option
Provides optparse options: -m, -c, --python-context, --pdb-pm
name.jwp.python.command.loader
Provides loaders for, well, loading Python code. The loader interfaces
from PEP302 were chosen for working with pkgutil.get_loader. The
implementation of this may have been mangled a bit with file_loader and
single_loader, but it was the best seemingly standard interface for
such a task.
name.jwp.python.command.runtime ...