Make these files to compile again under Windows.
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index ad758a6..d13563f 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -1340,9 +1340,10 @@
/* Don't do anything else */
}
else {
- assert(PyExceptionClass_Check(type));
PyObject* moduleName;
- char* className = PyExceptionClass_Name(type);
+ char* className;
+ assert(PyExceptionClass_Check(type));
+ className = PyExceptionClass_Name(type);
if (className != NULL) {
char *dot = strrchr(className, '.');
if (dot != NULL)