| 51 | } |
| 52 | |
| 53 | void gc_func_dealloc(PyObject* self) { |
| 54 | PyObject_GC_UnTrack(self); |
| 55 | Py_XDECREF(((gc_func*)self)->func); |
| 56 | PyObject_GC_Del(self); |
| 57 | } |
| 58 | |
| 59 | static PyMemberDef gc_func_members[] = { |
| 60 | {"__vectorcalloffset__", |
nothing calls this directly
no outgoing calls
no test coverage detected