diff options
author | Guido van Rossum <guido@python.org> | 1996-01-12 01:24:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-01-12 01:24:09 (GMT) |
commit | 97ead3fb8ee213eaa76e3a99e99b26c7b675b160 (patch) | |
tree | 56ad66c436878f0eb42dcad11d752585f39668e2 /Objects | |
parent | 39739ea0edccf1a4a11bde095a84ae24552c66c1 (diff) | |
download | cpython-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.c | 4 |
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; |