| 25 | #include "include/pyshim.hh" |
| 26 | |
| 27 | void JSObjectValuesProxyMethodDefinitions::JSObjectValuesProxy_dealloc(JSObjectValuesProxy *self) |
| 28 | { |
| 29 | PyObject_GC_UnTrack(self); |
| 30 | Py_XDECREF(self->dv.dv_dict); |
| 31 | PyObject_GC_Del(self); |
| 32 | } |
| 33 | |
| 34 | Py_ssize_t JSObjectValuesProxyMethodDefinitions::JSObjectValuesProxy_length(JSObjectValuesProxy *self) |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected