| 41 | } |
| 42 | |
| 43 | int JSObjectItemsProxyMethodDefinitions::JSObjectItemsProxy_traverse(JSObjectItemsProxy *self, visitproc visit, void *arg) { |
| 44 | Py_VISIT(self->dv.dv_dict); |
| 45 | return 0; |
| 46 | } |
| 47 | |
| 48 | int JSObjectItemsProxyMethodDefinitions::JSObjectItemsProxy_clear(JSObjectItemsProxy *self) { |
| 49 | Py_CLEAR(self->dv.dv_dict); |
nothing calls this directly
no outgoing calls
no test coverage detected