When printing an unraisable error, don't print exceptions. before the name.
This duplicates the behavior whening normally printing exceptions.
diff --git a/Python/errors.c b/Python/errors.c
index f31f025..9a23c05 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -603,7 +603,8 @@
 				PyFile_WriteString("<unknown>", f);
 			else {
 				char* modstr = PyString_AsString(moduleName);
-				if (modstr)
+				if (modstr &&
+				    strcmp(modstr, "exceptions") != 0)
 				{
 					PyFile_WriteString(modstr, f);
 					PyFile_WriteString(".", f);