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

Function BPlusTree_getitem

python/bplustree_c_src/bplustree_module.c:77–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77PyObject *
78BPlusTree_getitem(BPlusTree *self, PyObject *key) {
79 /* Direct lookup without releasing the GIL to avoid unsafe Python API use */
80 return tree_get(self, key);
81}
82
83int
84BPlusTree_setitem(BPlusTree *self, PyObject *key, PyObject *value) {

Callers

nothing calls this directly

Calls 1

tree_getFunction · 0.85

Tested by

no test coverage detected