diff options
author | Fred Drake <fdrake@acm.org> | 2001-09-04 18:39:45 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-09-04 18:39:45 (GMT) |
commit | 05857df41b5366ac7f016ddebcf9309bac5138ca (patch) | |
tree | ea3c8f3edfaede8c407afe2641f87d66c3367000 /Lib/imputil.py | |
parent | 757f7809e11b39869b92af7e941b5fcd06677227 (diff) | |
download | cpython-05857df41b5366ac7f016ddebcf9309bac5138ca.zip cpython-05857df41b5366ac7f016ddebcf9309bac5138ca.tar.gz cpython-05857df41b5366ac7f016ddebcf9309bac5138ca.tar.bz2 |
Added docstring by Neal Norwitz. This closes SF bug #450979.
Diffstat (limited to 'Lib/imputil.py')
-rw-r--r-- | Lib/imputil.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/Lib/imputil.py b/Lib/imputil.py index eb53e07..b4f93f4 100644 --- a/Lib/imputil.py +++ b/Lib/imputil.py @@ -1,8 +1,14 @@ -# -# imputil.py: import utilities -# +""" +Import utilities + +Exported classes: + ImportManager Manage the import process + + Importer Base class for replacing standard import functions + BuiltinImporter Emulate the import mechanism for builtin and frozen modules -### docco needed here and in Docs/ ... + DynLoadSuffixImporter +""" # note: avoid importing non-builtin modules import imp ### not available in JPython? |