| 90 | |
| 91 | |
| 92 | static void QObjectDealloc(pyQObject * self) { |
| 93 | Py_XDECREF(self->_TWcontext); |
| 94 | _PyObject_CAST(self)->ob_type->tp_free(self); |
| 95 | } |
| 96 | static void QObjectMethodDealloc(pyQObjectMethodObject * self) { |
| 97 | Py_XDECREF(self->_TWcontext); |
| 98 | Py_XDECREF(self->_methodName); |
nothing calls this directly
no outgoing calls
no test coverage detected