summaryrefslogtreecommitdiff
path: root/Objects/typeslots.inc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2011-02-11 20:50:24 +0000
committerMartin v. Löwis <martin@v.loewis.de>2011-02-11 20:50:24 +0000
commitcc7e23ac15a895770c93fde6145da61570f34e68 (patch)
treece7cd3bab5f690b4ec5d5856a18f5f796fa3b8a4 /Objects/typeslots.inc
parent691680644351924a4c5d0bee445e52b1d7e0cf97 (diff)
downloadcpython-git-cc7e23ac15a895770c93fde6145da61570f34e68.tar.gz
Issue #11134: Add missing fields to typeslots.h.
Reviewed by Georg Brandl.
Diffstat (limited to 'Objects/typeslots.inc')
-rw-r--r--Objects/typeslots.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/Objects/typeslots.inc b/Objects/typeslots.inc
index d4872f6aad..0494a32aa9 100644
--- a/Objects/typeslots.inc
+++ b/Objects/typeslots.inc
@@ -70,3 +70,6 @@ offsetof(PyHeapTypeObject, ht_type.tp_setattr),
offsetof(PyHeapTypeObject, ht_type.tp_setattro),
offsetof(PyHeapTypeObject, ht_type.tp_str),
offsetof(PyHeapTypeObject, ht_type.tp_traverse),
+offsetof(PyHeapTypeObject, ht_type.tp_members),
+offsetof(PyHeapTypeObject, ht_type.tp_getset),
+offsetof(PyHeapTypeObject, ht_type.tp_free),