diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-09-26 21:24:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-26 21:24:19 (GMT) |
commit | 7b88f63e1dd4006b1a08b9c9f087dd13449ecc76 (patch) | |
tree | d747d53319ed936b6b391531da9cf6d8837d1d2c /Modules/_sqlite/statement.h | |
parent | f56268a2cd38b3fe2be1e4361d3d8b581e73559b (diff) | |
download | cpython-7b88f63e1dd4006b1a08b9c9f087dd13449ecc76.zip cpython-7b88f63e1dd4006b1a08b9c9f087dd13449ecc76.tar.gz cpython-7b88f63e1dd4006b1a08b9c9f087dd13449ecc76.tar.bz2 |
bpo-44958: Revert GH-27844 (GH-28574)
This reverts commit 050d1035957379d70e8601e6f5636637716a264b, but keeps
the tests.
Diffstat (limited to 'Modules/_sqlite/statement.h')
-rw-r--r-- | Modules/_sqlite/statement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_sqlite/statement.h b/Modules/_sqlite/statement.h index cce81ed..b901c43 100644 --- a/Modules/_sqlite/statement.h +++ b/Modules/_sqlite/statement.h @@ -44,7 +44,7 @@ void pysqlite_statement_bind_parameters(pysqlite_state *state, pysqlite_Statement *self, PyObject *parameters); -void pysqlite_statement_reset(pysqlite_Statement *self); +int pysqlite_statement_reset(pysqlite_Statement* self); void pysqlite_statement_mark_dirty(pysqlite_Statement* self); int pysqlite_statement_setup_types(PyObject *module); |