From efdf107fb78af08416c3fb8061ed073ae6d9530d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 28 Jul 2000 10:34:48 +0000 Subject: [PATCH] Add the exceptions module to the 'never' list -- it is built in. --- Tools/freeze/makeconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/freeze/makeconfig.py b/Tools/freeze/makeconfig.py index db6bf6b54a9..5d1ba2c333c 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 --')