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

Method JSArrayIterProxy_dealloc

src/JSArrayIterProxy.cc:25–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23
24
25void JSArrayIterProxyMethodDefinitions::JSArrayIterProxy_dealloc(JSArrayIterProxy *self)
26{
27 PyObject_GC_UnTrack(self);
28 Py_XDECREF(self->it.it_seq);
29 PyObject_GC_Del(self);
30}
31
32int JSArrayIterProxyMethodDefinitions::JSArrayIterProxy_traverse(JSArrayIterProxy *self, visitproc visit, void *arg) {
33 Py_VISIT(self->it.it_seq);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected