commit | efdf107fb78af08416c3fb8061ed073ae6d9530d | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Jul 28 10:34:48 2000 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Jul 28 10:34:48 2000 +0000 |
tree | daa70b2c8a6244e49b452e451854b2047e2daba2 | |
parent | 152e3f088570dec0cbfb365f70478da8333a73e9 [diff] |
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 db6bf6b..5d1ba2c 100644 --- a/Tools/freeze/makeconfig.py +++ b/Tools/freeze/makeconfig.py
@@ -3,7 +3,7 @@ # 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 --')