diff -r 59223da36dec Include/pyerrors.h --- a/Include/pyerrors.h Tue Aug 07 03:10:57 2012 -0700 +++ b/Include/pyerrors.h Wed Aug 08 17:05:17 2012 -0700 @@ -6,17 +6,17 @@ extern "C" { /* Error objects */ #ifndef Py_LIMITED_API /* PyException_HEAD defines the initial segment of every exception class. */ #define PyException_HEAD PyObject_HEAD PyObject *dict;\ PyObject *args; PyObject *traceback;\ PyObject *context; PyObject *cause;\ - int suppress_context; + char suppress_context; typedef struct { PyException_HEAD } PyBaseExceptionObject; typedef struct { PyException_HEAD PyObject *msg;