]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add the exceptions module to the 'never' list -- it is built in.
authorGuido van Rossum <guido@python.org>
Fri, 28 Jul 2000 10:34:48 +0000 (10:34 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 28 Jul 2000 10:34:48 +0000 (10:34 +0000)
Tools/freeze/makeconfig.py

index db6bf6b54a93387e0058c16b1043321f1de1b39f..5d1ba2c333ca0fe918faafd0df32187822cd4875 100644 (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 --')