Add the exceptions module to the 'never' list -- it is built in.

This commit is contained in:
Guido van Rossum 2000-07-28 10:34:48 +00:00
parent 152e3f0885
commit efdf107fb7
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import regex
# Write the config.c file
never = ['marshal', '__main__', '__builtin__', 'sys']
never = ['marshal', '__main__', '__builtin__', 'sys', 'exceptions']
def makeconfig(infp, outfp, modules, with_ifdef=0):
m1 = regex.compile('-- ADDMODULE MARKER 1 --')