added a few more __all__ lists

fixed typo in ihooks docstring
This commit is contained in:
Skip Montanaro 2001-01-23 15:35:05 +00:00
parent 26e94a8822
commit 2dd4276559
9 changed files with 26 additions and 1 deletions

View file

@ -42,7 +42,7 @@ instantiated).
The classes defined here should be used as base classes for extended
functionality along those lines.
If a module mporter class supports dotted names, its import_module()
If a module importer class supports dotted names, its import_module()
must return a different value depending on whether it is called on
behalf of a "from ... import ..." statement or not. (This is caused
by the way the __import__ hook is used by the Python interpreter.) It
@ -57,6 +57,8 @@ import os
import sys
import string
__all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
"BasicModuleImporter","ModuleImporter","install","uninstall"]
VERBOSE = 0