diff options
Diffstat (limited to 'Include/object.h')
-rw-r--r-- | Include/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/object.h b/Include/object.h index 4529b61423..400e657516 100644 --- a/Include/object.h +++ b/Include/object.h @@ -285,6 +285,7 @@ typedef struct _typeobject { allocfunc tp_alloc; newfunc tp_new; destructor tp_free; /* Low-level free-memory routine */ + inquiry tp_is_gc; /* For PyObject_IS_GC */ PyObject *tp_bases; PyObject *tp_mro; /* method resolution order */ PyObject *tp_defined; |