summaryrefslogtreecommitdiffstats
path: root/Include/structmember.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/structmember.h')
-rw-r--r--Include/structmember.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/structmember.h b/Include/structmember.h
index acdb84e..0b85b2a 100644
--- a/Include/structmember.h
+++ b/Include/structmember.h
@@ -54,6 +54,9 @@ typedef struct PyMemberDef {
/* Added by Jack: strings contained in the structure */
#define T_STRING_INPLACE 13
+/* Added by Lillo: bools contained in the structure (assumed char) */
+#define T_BOOL 14
+
#define T_OBJECT_EX 16 /* Like T_OBJECT, but raises AttributeError
when the value is NULL, instead of
converting to None. */