From 1a1367b821ee6e724cc4d66934f93d84d8544161 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 8 Aug 2012 17:22:50 -0700 Subject: use char instead of int to please T_BOOL (closes #15597) --- Include/pyerrors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 2c145ad..af37410 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 -- cgit v0.12