From: Fred Drake Date: Tue, 4 Sep 2001 18:39:45 +0000 (+0000) Subject: Added docstring by Neal Norwitz. This closes SF bug #450979. X-Git-Tag: v2.2a3~122 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05857df41b5366ac7f016ddebcf9309bac5138ca;p=thirdparty%2FPython%2Fcpython.git Added docstring by Neal Norwitz. This closes SF bug #450979. --- diff --git a/Lib/imputil.py b/Lib/imputil.py index eb53e070e5eb..b4f93f45c7e5 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?