Lines Matching refs:cursors
229 /* Create lists of weak references to cursors and blobs */
230 PyObject *cursors = PyList_New(0);
231 if (cursors == NULL) {
239 Py_DECREF(cursors);
251 self->cursors = cursors;
300 Py_VISIT(self->cursors);
324 Py_CLEAR(self->cursors);
922 for (i = 0; i < PyList_Size(self->cursors); i++) {
923 weakref = PyList_GetItem(self->cursors, i);
932 Py_SETREF(self->cursors, new_list);