From: Guido van Rossum Date: Fri, 12 Jan 1996 01:24:09 +0000 (+0000) Subject: Hack to force loading of cobject.o X-Git-Tag: v1.4b1~412 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=97ead3fb8ee213eaa76e3a99e99b26c7b675b160;p=thirdparty%2FPython%2Fcpython.git Hack to force loading of cobject.o --- diff --git a/Objects/object.c b/Objects/object.c index 4899ef18fcdd..fa35b80849ae 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -572,3 +572,7 @@ getobjects(self, args) } #endif + + +/* Hack to force loading of cobject.o */ +static PyTypeObject *cobject_hack = &PyCObject_Type;