| 23 | |
| 24 | |
| 25 | void JSArrayIterProxyMethodDefinitions::JSArrayIterProxy_dealloc(JSArrayIterProxy *self) |
| 26 | { |
| 27 | PyObject_GC_UnTrack(self); |
| 28 | Py_XDECREF(self->it.it_seq); |
| 29 | PyObject_GC_Del(self); |
| 30 | } |
| 31 | |
| 32 | int JSArrayIterProxyMethodDefinitions::JSArrayIterProxy_traverse(JSArrayIterProxy *self, visitproc visit, void *arg) { |
| 33 | Py_VISIT(self->it.it_seq); |
nothing calls this directly
no outgoing calls
no test coverage detected