From: Guido van Rossum Date: Fri, 28 Jul 2000 10:34:48 +0000 (+0000) Subject: Add the exceptions module to the 'never' list -- it is built in. X-Git-Tag: v2.0b1~693 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=efdf107fb78af08416c3fb8061ed073ae6d9530d;p=thirdparty%2FPython%2Fcpython.git Add the exceptions module to the 'never' list -- it is built in. --- diff --git a/Tools/freeze/makeconfig.py b/Tools/freeze/makeconfig.py index db6bf6b54a93..5d1ba2c333ca 100644 --- a/Tools/freeze/makeconfig.py +++ b/Tools/freeze/makeconfig.py @@ -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 --')