summaryrefslogtreecommitdiff
path: root/Include/pyerrors.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-08-08 17:22:50 -0700
committerBenjamin Peterson <benjamin@python.org>2012-08-08 17:22:50 -0700
commite1c22d8723a952d1513c11f40654539cc7ffc27e (patch)
tree12ae1f31d440617bc78720d5724ce00258d44de9 /Include/pyerrors.h
parent34dbd9bd05fba142fec28e355b086b6c4994055c (diff)
downloadcpython-e1c22d8723a952d1513c11f40654539cc7ffc27e.tar.gz
use char instead of int to please T_BOOL (closes #15597)
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r--Include/pyerrors.h2
1 files changed, 1 insertions, 1 deletions
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