mirror of https://github.com/python/cpython.git
Fix a compile error on Windows.
This commit is contained in:
parent
812567d3f8
commit
231ff0ec11
|
@ -7,7 +7,7 @@ extern "C" {
|
||||||
/* Error objects */
|
/* Error objects */
|
||||||
|
|
||||||
/* PyException_HEAD defines the initial segment of every exception class. */
|
/* 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 *args; PyObject *traceback;\
|
||||||
PyObject *context; PyObject *cause;
|
PyObject *context; PyObject *cause;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue