| 35 | } |
| 36 | |
| 37 | int JSObjectIterProxyMethodDefinitions::JSObjectIterProxy_traverse(JSObjectIterProxy *self, visitproc visit, void *arg) { |
| 38 | Py_VISIT(self->it.di_dict); |
| 39 | return 0; |
| 40 | } |
| 41 | |
| 42 | int JSObjectIterProxyMethodDefinitions::JSObjectIterProxy_clear(JSObjectIterProxy *self) { |
| 43 | Py_CLEAR(self->it.di_dict); |
nothing calls this directly
no outgoing calls
no test coverage detected