summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-01-12 01:24:09 (GMT)
committerGuido van Rossum <guido@python.org>1996-01-12 01:24:09 (GMT)
commit97ead3fb8ee213eaa76e3a99e99b26c7b675b160 (patch)
tree56ad66c436878f0eb42dcad11d752585f39668e2 /Objects
parent39739ea0edccf1a4a11bde095a84ae24552c66c1 (diff)
downloadcpython-97ead3fb8ee213eaa76e3a99e99b26c7b675b160.zip
cpython-97ead3fb8ee213eaa76e3a99e99b26c7b675b160.tar.gz
cpython-97ead3fb8ee213eaa76e3a99e99b26c7b675b160.tar.bz2
Hack to force loading of cobject.o
Diffstat (limited to 'Objects')
-rw-r--r--Objects/object.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 4899ef1..fa35b80 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;