summaryrefslogtreecommitdiffstats
path: root/Include/object.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-04-23 19:16:44 (GMT)
committerGuido van Rossum <guido@python.org>1998-04-23 19:16:44 (GMT)
commita9c2d7a87c7a8b59b89ef6313285164bdeba9516 (patch)
tree0ece73b7af59ac6cb2ece1e11d5455b903464642 /Include/object.h
parenta937afd363de79433ccdaea6643b8907410d3ba8 (diff)
downloadcpython-a9c2d7a87c7a8b59b89ef6313285164bdeba9516.zip
cpython-a9c2d7a87c7a8b59b89ef6313285164bdeba9516.tar.gz
cpython-a9c2d7a87c7a8b59b89ef6313285164bdeba9516.tar.bz2
Add new spares to the end of the type object struct.
Diffstat (limited to 'Include/object.h')
-rw-r--r--Include/object.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Include/object.h b/Include/object.h
index 78a56d6..c6e3823 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -245,6 +245,12 @@ typedef struct _typeobject {
char *tp_doc; /* Documentation string */
+ /* More spares */
+ long tp_xxx5;
+ long tp_xxx6;
+ long tp_xxx7;
+ long tp_xxx8;
+
#ifdef COUNT_ALLOCS
/* these must be last */
int tp_alloc;