| 27 | |
| 28 | |
| 29 | void JSObjectIterProxyMethodDefinitions::JSObjectIterProxy_dealloc(JSObjectIterProxy *self) |
| 30 | { |
| 31 | delete self->it.props; |
| 32 | PyObject_GC_UnTrack(self); |
| 33 | Py_XDECREF(self->it.di_dict); |
| 34 | PyObject_GC_Del(self); |
| 35 | } |
| 36 | |
| 37 | int JSObjectIterProxyMethodDefinitions::JSObjectIterProxy_traverse(JSObjectIterProxy *self, visitproc visit, void *arg) { |
| 38 | Py_VISIT(self->it.di_dict); |
nothing calls this directly
no outgoing calls
no test coverage detected