[Python-checkins] CVS: python/dist/src/Tools/freeze makeconfig.py,1.2,1.3
Guido van Rossum
python-dev@python.org
2000年7月28日 03:34:51 -0700
Update of /cvsroot/python/python/dist/src/Tools/freeze
In directory slayer.i.sourceforge.net:/tmp/cvs-serv29325
Modified Files:
makeconfig.py
Log Message:
Add the exceptions module to the 'never' list -- it is built in.
Index: makeconfig.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/freeze/makeconfig.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** makeconfig.py 1999年09月30日 14:12:44 1.2
--- makeconfig.py 2000年07月28日 10:34:48 1.3
***************
*** 4,8 ****
# Write the config.c file
! never = ['marshal', '__main__', '__builtin__', 'sys']
def makeconfig(infp, outfp, modules, with_ifdef=0):
--- 4,8 ----
# Write the config.c file
! never = ['marshal', '__main__', '__builtin__', 'sys', 'exceptions']
def makeconfig(infp, outfp, modules, with_ifdef=0):