summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite/cursor.h
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-08-25 10:28:47 (GMT)
committerGitHub <noreply@github.com>2021-08-25 10:28:47 (GMT)
commit3df0fc89bc2714f5ef03e36a926bc795dcd5e05a (patch)
treea37e5aea557d4f2dd3edca25495789771586e2a6 /Modules/_sqlite/cursor.h
parent7cba23164cf82f6619db002cd30021b5dfb1f809 (diff)
downloadcpython-3df0fc89bc2714f5ef03e36a926bc795dcd5e05a.zip
cpython-3df0fc89bc2714f5ef03e36a926bc795dcd5e05a.tar.gz
cpython-3df0fc89bc2714f5ef03e36a926bc795dcd5e05a.tar.bz2
bpo-44976: Lazy creation of sqlite3 result rows (GH-27884)
Diffstat (limited to 'Modules/_sqlite/cursor.h')
-rw-r--r--Modules/_sqlite/cursor.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/_sqlite/cursor.h b/Modules/_sqlite/cursor.h
index 29f52b9..d26d20a 100644
--- a/Modules/_sqlite/cursor.h
+++ b/Modules/_sqlite/cursor.h
@@ -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;