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