| 48 | } |
| 49 | |
| 50 | int JSObjectKeysProxyMethodDefinitions::JSObjectKeysProxy_traverse(JSObjectKeysProxy *self, visitproc visit, void *arg) { |
| 51 | Py_VISIT(self->dv.dv_dict); |
| 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | int JSObjectKeysProxyMethodDefinitions::JSObjectKeysProxy_clear(JSObjectKeysProxy *self) { |
| 56 | Py_CLEAR(self->dv.dv_dict); |
nothing calls this directly
no outgoing calls
no test coverage detected