summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite/connection.h
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-06-03 21:24:25 (GMT)
committerGitHub <noreply@github.com>2021-06-03 21:24:25 (GMT)
commit3446516ffa92c98519146253153484291947b273 (patch)
tree960fc411fae9adacecffed18d2436bcf6f6455e7 /Modules/_sqlite/connection.h
parent5c2191df9a21a3b3d49dd0711b8d2b92591ce82b (diff)
downloadcpython-3446516ffa92c98519146253153484291947b273.zip
cpython-3446516ffa92c98519146253153484291947b273.tar.gz
cpython-3446516ffa92c98519146253153484291947b273.tar.bz2
bpo-44042: Optimize sqlite3 begin transaction (GH-25908)
Diffstat (limited to 'Modules/_sqlite/connection.h')
-rw-r--r--Modules/_sqlite/connection.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h
index f2be4f1..03845a6 100644
--- a/Modules/_sqlite/connection.h
+++ b/Modules/_sqlite/connection.h
@@ -107,8 +107,6 @@ typedef struct
extern PyTypeObject *pysqlite_ConnectionType;
-PyObject* _pysqlite_connection_begin(pysqlite_Connection* self);
-
int pysqlite_connection_register_cursor(pysqlite_Connection* connection, PyObject* cursor);
int pysqlite_check_thread(pysqlite_Connection* self);
int pysqlite_check_connection(pysqlite_Connection* con);