Fix a compile error on Windows.

This commit is contained in:
Collin Winter 2007-08-31 00:59:38 +00:00
parent 812567d3f8
commit 231ff0ec11
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ extern "C" {
/* Error objects */
/* PyException_HEAD defines the initial segment of every exception class. */
#define PyException_HEAD PyObject_HEAD; PyObject *dict;\
#define PyException_HEAD PyObject_HEAD PyObject *dict;\
PyObject *args; PyObject *traceback;\
PyObject *context; PyObject *cause;