bpo-44958: Only reset sqlite3 statements when needed (GH-27844)

This commit is contained in:
Erlend Egeberg Aasland 2021-09-21 13:20:34 +02:00 committed by GitHub
parent debd804037
commit 050d103595
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 84 additions and 48 deletions

View file

@ -44,7 +44,7 @@ void pysqlite_statement_bind_parameters(pysqlite_state *state,
pysqlite_Statement *self,
PyObject *parameters);
int pysqlite_statement_reset(pysqlite_Statement* self);
void pysqlite_statement_reset(pysqlite_Statement *self);
void pysqlite_statement_mark_dirty(pysqlite_Statement* self);
int pysqlite_statement_setup_types(PyObject *module);