| 45 | } |
| 46 | |
| 47 | PyObject *JSObjectIterProxyMethodDefinitions::JSObjectIterProxy_iter(JSObjectIterProxy *self) { |
| 48 | Py_INCREF(&self->it); |
| 49 | return (PyObject *)&self->it; |
| 50 | } |
| 51 | |
| 52 | PyObject *JSObjectIterProxyMethodDefinitions::JSObjectIterProxy_nextkey(JSObjectIterProxy *self) { |
| 53 | PyDictObject *dict = self->it.di_dict; |
nothing calls this directly
no outgoing calls
no test coverage detected