Issue #25972, #20440: Fix compilation on Windows

This commit is contained in:
Zachary Ware 2015-12-28 21:51:02 -08:00
parent eae3079041
commit bffa73e582
1 changed files with 1 additions and 1 deletions

View File

@ -5150,7 +5150,7 @@ comerror_init(PyObject *self, PyObject *args, PyObject *kwds)
return -1;
Py_INCREF(args);
Py_SETREF((PyBaseExceptionObject *)self->args, args);
Py_SETREF(((PyBaseExceptionObject *)self)->args, args);
return 0;
}