File: src/BTrees/BTreeItemsTemplate.c
Function: BTreeItems_item
Error: returning (PyObject*)NULL without setting an exception
287 static PyObject *
288 BTreeItems_item(BTreeItems *self, Py_ssize_t i)
289 {
290     PyObject *result;
291 
292     if (BTreeItems_seek(self, i) < 0) return NULL;
when considering range: -0x80000000 <= value <= -1
taking True path
293 
294     PER_USE_OR_RETURN(self->currentbucket, NULL);
295     result = getBucketEntry(self->currentbucket, self->currentoffset,
296                             self->kind);
297     PER_UNUSE(self->currentbucket);
298     return result;
299 }
returning (PyObject*)NULL without setting an exception