| 35 | } |
| 36 | |
| 37 | int JSArrayIterProxyMethodDefinitions::JSArrayIterProxy_clear(JSArrayIterProxy *self) { |
| 38 | Py_CLEAR(self->it.it_seq); |
| 39 | return 0; |
| 40 | } |
| 41 | |
| 42 | PyObject *JSArrayIterProxyMethodDefinitions::JSArrayIterProxy_iter(JSArrayIterProxy *self) { |
| 43 | Py_INCREF(&self->it); |
nothing calls this directly
no outgoing calls
no test coverage detected