[Python-checkins] CVS: python/dist/src/Lib imputil.py,1.21,1.22
Fred L. Drake
fdrake@users.sourceforge.net
Tue, 04 Sep 2001 11:39:47 -0700
Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv21330
Modified Files:
imputil.py
Log Message:
Added docstring by Neal Norwitz. This closes SF bug #450979.
Index: imputil.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/imputil.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** imputil.py 2001/07/28 20:33:41 1.21
--- imputil.py 2001/09/04 18:39:45 1.22
***************
*** 1,7 ****
! #
! # imputil.py: import utilities
! #
! ### docco needed here and in Docs/ ...
# note: avoid importing non-builtin modules
--- 1,13 ----
! """
! 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
!
! DynLoadSuffixImporter
! """
# note: avoid importing non-builtin modules