| 40 | } |
| 41 | |
| 42 | PyObject *JSArrayIterProxyMethodDefinitions::JSArrayIterProxy_iter(JSArrayIterProxy *self) { |
| 43 | Py_INCREF(&self->it); |
| 44 | return (PyObject *)&self->it; |
| 45 | } |
| 46 | |
| 47 | PyObject *JSArrayIterProxyMethodDefinitions::JSArrayIterProxy_next(JSArrayIterProxy *self) { |
| 48 | PyListObject *seq = self->it.it_seq; |
nothing calls this directly
no outgoing calls
no test coverage detected