MCPcopy Create free account
hub / github.com/Distributive-Network/PythonMonkey / JSObjectIterProxy_dealloc

Method JSObjectIterProxy_dealloc

src/JSObjectIterProxy.cc:29–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27
28
29void JSObjectIterProxyMethodDefinitions::JSObjectIterProxy_dealloc(JSObjectIterProxy *self)
30{
31 delete self->it.props;
32 PyObject_GC_UnTrack(self);
33 Py_XDECREF(self->it.di_dict);
34 PyObject_GC_Del(self);
35}
36
37int JSObjectIterProxyMethodDefinitions::JSObjectIterProxy_traverse(JSObjectIterProxy *self, visitproc visit, void *arg) {
38 Py_VISIT(self->it.di_dict);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected