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 --')