bpo-44976: Lazy creation of sqlite3 result rows (GH-27884)

This commit is contained in:
Erlend Egeberg Aasland 2021-08-25 12:28:47 +02:00 committed by GitHub
parent 7cba23164c
commit 3df0fc89bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 58 deletions

View file

@ -46,9 +46,6 @@ typedef struct
int locked;
int initialized;
/* the next row to be returned, NULL if no next row available */
PyObject* next_row;
PyObject* in_weakreflist; /* List of weak references */
} pysqlite_Cursor;