From 05857df41b5366ac7f016ddebcf9309bac5138ca Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 4 Sep 2001 18:39:45 +0000 Subject: [PATCH] Added docstring by Neal Norwitz. This closes SF bug #450979. --- Lib/imputil.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) 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? -- 2.47.3