diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-31 00:59:38 +0000 |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-31 00:59:38 +0000 |
commit | 231ff0ec1116b406fbb1d10e17a9abad7bdad343 (patch) | |
tree | 0e13864f110875743ea3f3e5d01545293913bd40 /Include/pyerrors.h | |
parent | 812567d3f8e9d7ca69014a7ce5b54a262f408e3c (diff) | |
download | cpython-git-231ff0ec1116b406fbb1d10e17a9abad7bdad343.tar.gz |
Fix a compile error on Windows.
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r-- | Include/pyerrors.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 8d676d9ed4..1e1cf5b7c7 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; |