| 40 | } |
| 41 | |
| 42 | int JSObjectIterProxyMethodDefinitions::JSObjectIterProxy_clear(JSObjectIterProxy *self) { |
| 43 | Py_CLEAR(self->it.di_dict); |
| 44 | return 0; |
| 45 | } |
| 46 | |
| 47 | PyObject *JSObjectIterProxyMethodDefinitions::JSObjectIterProxy_iter(JSObjectIterProxy *self) { |
| 48 | Py_INCREF(&self->it); |
nothing calls this directly
no outgoing calls
no test coverage detected