| 235 | } |
| 236 | |
| 237 | static PyObject * |
| 238 | BPlusTree_keys(BPlusTree *self, PyObject *Py_UNUSED(ignored)) { |
| 239 | return BPlusTree_iter(self); |
| 240 | } |
| 241 | |
| 242 | static PyObject * |
| 243 | BPlusTree_items(BPlusTree *self, PyObject *Py_UNUSED(args)) { |
nothing calls this directly
no test coverage detected