| 75 | } |
| 76 | |
| 77 | PyObject * |
| 78 | BPlusTree_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 | |
| 83 | int |
| 84 | BPlusTree_setitem(BPlusTree *self, PyObject *key, PyObject *value) { |
nothing calls this directly
no test coverage detected