MCPcopy Create free account
hub / github.com/cruppstahl/upscaledb / construct_cursor

Function construct_cursor

python/src/python.cc:1230–1239  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1228}
1229
1230static PyObject *
1231construct_cursor(PyObject *self, PyObject *args)
1232{
1233 UpsCursor *c = PyObject_New(UpsCursor, &UpsCursor_Type);
1234 if (!c)
1235 return (0);
1236
1237 c->cursor = 0;
1238 return (cursor_create(c, args));
1239}
1240
1241static PyObject *
1242cursor_create(UpsCursor *self, PyObject *args)

Callers

nothing calls this directly

Calls 1

cursor_createFunction · 0.85

Tested by

no test coverage detected