Commit 47039f4d authored by Benjamin Peterson's avatar Benjamin Peterson

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

parent 3ef9c07c
...@@ -11,7 +11,7 @@ extern "C" { ...@@ -11,7 +11,7 @@ extern "C" {
#define PyException_HEAD PyObject_HEAD PyObject *dict;\ #define PyException_HEAD PyObject_HEAD PyObject *dict;\
PyObject *args; PyObject *traceback;\ PyObject *args; PyObject *traceback;\
PyObject *context; PyObject *cause;\ PyObject *context; PyObject *cause;\
int suppress_context; char suppress_context;
typedef struct { typedef struct {
PyException_HEAD PyException_HEAD
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment