Remove the exceptions builtin module, all the exceptions are already builtin.
diff --git a/Python/errors.c b/Python/errors.c
index 0e565c1..e00d3ec 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -612,7 +612,8 @@
 				PyFile_WriteString("<unknown>", f);
 			else {
 				char* modstr = PyString_AsString(moduleName);
-				if (modstr)
+				if (modstr &&
+				    strcmp(modstr, "__builtin__") != 0)
 				{
 					PyFile_WriteString(modstr, f);
 					PyFile_WriteString(".", f);