| 25 | #include "include/pyshim.hh" |
| 26 | |
| 27 | void JSObjectKeysProxyMethodDefinitions::JSObjectKeysProxy_dealloc(JSObjectKeysProxy *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 JSObjectKeysProxyMethodDefinitions::JSObjectKeysProxy_length(JSObjectKeysProxy *self) |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected