summaryrefslogtreecommitdiff
path: root/Modules/_sqlite/cursor.h
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2022-01-04 00:47:16 +0100
committerGitHub <noreply@github.com>2022-01-03 15:47:16 -0800
commitf1a58441eea6b7788c64d03a80ea35996301e550 (patch)
tree0007a8374b79bee55f282077466120f8707b7e07 /Modules/_sqlite/cursor.h
parent2db56130631255ca2eb504519430fb2f1fe789e9 (diff)
downloadcpython-git-f1a58441eea6b7788c64d03a80ea35996301e550.tar.gz
bpo-44092: Remove unused member `reset` from `sqlite3.Cursor` (GH-30377)
Automerge-Triggered-By: GH:pablogsal
Diffstat (limited to 'Modules/_sqlite/cursor.h')
-rw-r--r--Modules/_sqlite/cursor.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_sqlite/cursor.h b/Modules/_sqlite/cursor.h
index d26d20a9fc..0bcdddc3e2 100644
--- a/Modules/_sqlite/cursor.h
+++ b/Modules/_sqlite/cursor.h
@@ -42,7 +42,6 @@ typedef struct
PyObject* row_factory;
pysqlite_Statement* statement;
int closed;
- int reset;
int locked;
int initialized;