Add "exceptions" to list of built-in modules for the sake of
sys.builtin_module_names.  (Noticed by Toby Dickenson.)
diff --git a/Modules/config.c.in b/Modules/config.c.in
index 08358db..106b084 100644
--- a/Modules/config.c.in
+++ b/Modules/config.c.in
@@ -37,6 +37,7 @@
 	{"__main__", NULL},
 	{"__builtin__", NULL},
 	{"sys", NULL},
+	{"exceptions", NULL},
 
 	/* Sentinel */
 	{0, 0}