aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-07-28 10:34:48 +0000
committerGuido van Rossum <guido@python.org>2000-07-28 10:34:48 +0000
commitefdf107fb78af08416c3fb8061ed073ae6d9530d (patch)
treedaa70b2c8a6244e49b452e451854b2047e2daba2 /Tools/freeze
parentWas quite broken and incomplete. Now passes the test suite, but is still inc... (diff)
downloadcpython-efdf107fb78af08416c3fb8061ed073ae6d9530d.tar.gz
cpython-efdf107fb78af08416c3fb8061ed073ae6d9530d.tar.bz2
cpython-efdf107fb78af08416c3fb8061ed073ae6d9530d.zip
Add the exceptions module to the 'never' list -- it is built in.
Diffstat (limited to 'Tools/freeze')
-rw-r--r--Tools/freeze/makeconfig.py2
1 files changed, 1 insertions, 1 deletions
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 --')