MCPcopy Create free account
hub / github.com/KentBeck/BPlusTree3 / BPlusTreeIterator_dealloc

Function BPlusTreeIterator_dealloc

python/bplustree_c_src/bplustree_module.c:132–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130} BPlusTreeIterator;
131
132static void
133BPlusTreeIterator_dealloc(BPlusTreeIterator *self) {
134 Py_XDECREF(self->tree);
135 Py_TYPE(self)->tp_free((PyObject *)self);
136}
137
138static PyObject *
139BPlusTreeIterator_next(BPlusTreeIterator *self) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected