use char instead of int to please T_BOOL (closes #15597)

This commit is contained in:
Benjamin Peterson 2012-08-08 17:22:50 -07:00
parent 20416a20b7
commit 1a1367b821
1 changed files with 1 additions and 1 deletions

View File

@ -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