diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-08-26 19:08:51 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-08-26 19:08:51 (GMT) |
commit | 6ed442c48dd7f8d3097e688a36bc027df3271621 (patch) | |
tree | 64ee7c4057f3f862a4522f2020eb1f89883bb96c /Modules/_sqlite | |
parent | f74c33ad5c94f1f07f574336dc2d5a6345acdcc7 (diff) | |
parent | cc9afa9b517fd66bad148f546055985ad87bc816 (diff) | |
download | cpython-6ed442c48dd7f8d3097e688a36bc027df3271621.zip cpython-6ed442c48dd7f8d3097e688a36bc027df3271621.tar.gz cpython-6ed442c48dd7f8d3097e688a36bc027df3271621.tar.bz2 |
Issue #10513: Merge from 3.5
Diffstat (limited to 'Modules/_sqlite')
-rw-r--r-- | Modules/_sqlite/connection.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_sqlite/connection.c b/Modules/_sqlite/connection.c index 5349299..1841c768 100644 --- a/Modules/_sqlite/connection.c +++ b/Modules/_sqlite/connection.c @@ -425,7 +425,6 @@ PyObject* pysqlite_connection_commit(pysqlite_Connection* self, PyObject* args) } if (self->inTransaction) { - pysqlite_do_all_statements(self, ACTION_RESET, 0); Py_BEGIN_ALLOW_THREADS rc = sqlite3_prepare(self->db, "COMMIT", -1, &statement, &tail); |