| 30 | } |
| 31 | |
| 32 | int JSArrayIterProxyMethodDefinitions::JSArrayIterProxy_traverse(JSArrayIterProxy *self, visitproc visit, void *arg) { |
| 33 | Py_VISIT(self->it.it_seq); |
| 34 | return 0; |
| 35 | } |
| 36 | |
| 37 | int JSArrayIterProxyMethodDefinitions::JSArrayIterProxy_clear(JSArrayIterProxy *self) { |
| 38 | Py_CLEAR(self->it.it_seq); |
nothing calls this directly
no outgoing calls
no test coverage detected