From: Collin Winter Date: Fri, 31 Aug 2007 00:59:38 +0000 (+0000) Subject: Fix a compile error on Windows. X-Git-Tag: v3.0a1~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=231ff0ec1116b406fbb1d10e17a9abad7bdad343;p=thirdparty%2FPython%2Fcpython.git Fix a compile error on Windows. --- diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 8d676d9ed4b3..1e1cf5b7c738 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -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;