| 26 | |
| 27 | |
| 28 | void JSObjectItemsProxyMethodDefinitions::JSObjectItemsProxy_dealloc(JSObjectItemsProxy *self) |
| 29 | { |
| 30 | PyObject_GC_UnTrack(self); |
| 31 | Py_XDECREF(self->dv.dv_dict); |
| 32 | PyObject_GC_Del(self); |
| 33 | } |
| 34 | |
| 35 | Py_ssize_t JSObjectItemsProxyMethodDefinitions::JSObjectItemsProxy_length(JSObjectItemsProxy *self) |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected