diff options
author | Erlend Egeberg Aasland <erlend.aasland@protonmail.com> | 2022-05-03 12:33:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 12:33:24 (GMT) |
commit | 1d4a9a45b7ac8c1c5fecc363c988be59500f1ed7 (patch) | |
tree | 732708c26149d1358bd8caf7c930ef5d80a98e37 /Modules/_sqlite/connection.h | |
parent | 628d6e8270339062c591825ea467ab00bb560f6f (diff) | |
download | cpython-1d4a9a45b7ac8c1c5fecc363c988be59500f1ed7.zip cpython-1d4a9a45b7ac8c1c5fecc363c988be59500f1ed7.tar.gz cpython-1d4a9a45b7ac8c1c5fecc363c988be59500f1ed7.tar.bz2 |
gh-92206: Improve scoping of sqlite3 register cursor helper (#92212)
Diffstat (limited to 'Modules/_sqlite/connection.h')
-rw-r--r-- | Modules/_sqlite/connection.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h index 2b946ff..629fe3d 100644 --- a/Modules/_sqlite/connection.h +++ b/Modules/_sqlite/connection.h @@ -99,7 +99,6 @@ typedef struct PyObject* NotSupportedError; } pysqlite_Connection; -int pysqlite_connection_register_cursor(pysqlite_Connection* connection, PyObject* cursor); int pysqlite_check_thread(pysqlite_Connection* self); int pysqlite_check_connection(pysqlite_Connection* con); |