From: Benjamin Peterson Date: Thu, 9 Aug 2012 00:22:50 +0000 (-0700) Subject: use char instead of int to please T_BOOL (closes #15597) X-Git-Tag: v3.3.0b2~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a1367b821ee6e724cc4d66934f93d84d8544161;p=python use char instead of int to please T_BOOL (closes #15597) --- diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 2c145ada35..af37410e23 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -11,7 +11,7 @@ extern "C" { #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