diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-23 23:16:25 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-23 23:16:25 (GMT) |
commit | b734869f46cdbbfff231fdab49dc0ad4e3b45623 (patch) | |
tree | 54d71b8e166220f0c933ec78490a5a6eb850856d /Mac/Modules/ctl/_Ctlmodule.c | |
parent | 74d93c81c190f9dfd7302e17536a49b8dd4f7da6 (diff) | |
download | cpython-b734869f46cdbbfff231fdab49dc0ad4e3b45623.zip cpython-b734869f46cdbbfff231fdab49dc0ad4e3b45623.tar.gz cpython-b734869f46cdbbfff231fdab49dc0ad4e3b45623.tar.bz2 |
- Various tweaks to shut up compiler warnings.
- Regenerated with the correct calls to PyType_Ready and the correct
deallocator calls.
Diffstat (limited to 'Mac/Modules/ctl/_Ctlmodule.c')
-rw-r--r-- | Mac/Modules/ctl/_Ctlmodule.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mac/Modules/ctl/_Ctlmodule.c b/Mac/Modules/ctl/_Ctlmodule.c index cc4bce2..98c6f4f 100644 --- a/Mac/Modules/ctl/_Ctlmodule.c +++ b/Mac/Modules/ctl/_Ctlmodule.c @@ -179,7 +179,7 @@ static void CtlObj_dealloc(ControlObject *self) { Py_XDECREF(self->ob_callbackdict); if (self->ob_itself)SetControlReference(self->ob_itself, (long)0); /* Make it forget about us */ - PyObject_Del(self); + self->ob_type->tp_free((PyObject *)self); } static PyObject *CtlObj_HiliteControl(ControlObject *_self, PyObject *_args) @@ -5849,6 +5849,7 @@ void init_Ctl(void) PyDict_SetItemString(d, "Error", Ctl_Error) != 0) return; Control_Type.ob_type = &PyType_Type; + if (PyType_Ready(&Control_Type) < 0) return; Py_INCREF(&Control_Type); PyModule_AddObject(m, "Control", (PyObject *)&Control_Type); /* Backward-compatible name */ |