Update of /cvsroot/happydoc/HappyDoc/happydoclib
In directory usw-pr-cvs1:/tmp/cvs-serv9097/happydoclib
Modified Files:
happyformatter.py
Log Message:
Added 'new' to the list of well known modules, since it does not
appear to be in the path for Python 2.2 but it is importable.
Index: happyformatter.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc/happydoclib/happyformatter.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** happyformatter.py 2001/11/11 18:47:51 1.3
--- happyformatter.py 2002/02/02 13:46:04 1.4
***************
*** 120,124 ****
_sys_modules.append(name)
! _well_known_names = ( 'regex', 'sys', 'thread', 'threading' )
for _name in _well_known_names:
_sys_modules.append(_name)
--- 120,124 ----
_sys_modules.append(name)
! _well_known_names = ( 'regex', 'sys', 'thread', 'threading', 'new' )
for _name in _well_known_names:
_sys_modules.append(_name)
|