moduleName can be NULL

This commit is contained in:
Neal Norwitz 2006-04-17 00:33:23 +00:00
parent aa220a7023
commit 1a26920506
1 changed files with 1 additions and 1 deletions

View File

@ -604,7 +604,7 @@ PyErr_WriteUnraisable(PyObject *obj)
PyFile_WriteString(": ", f);
PyFile_WriteObject(v, f, 0);
}
Py_DECREF(moduleName);
Py_XDECREF(moduleName);
}
PyFile_WriteString(" in ", f);
PyFile_WriteObject(obj, f, 0);