From: Guido van Rossum Date: Thu, 23 Apr 1998 19:16:44 +0000 (+0000) Subject: Add new spares to the end of the type object struct. X-Git-Tag: v1.5.2a1~849 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a9c2d7a87c7a8b59b89ef6313285164bdeba9516;p=thirdparty%2FPython%2Fcpython.git Add new spares to the end of the type object struct. --- diff --git a/Include/object.h b/Include/object.h index 78a56d67960d..c6e3823df7c1 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;