8000 [3.9] bpo-27334: roll back transaction if sqlite3 context manager fails to commit (GH-26202) by erlend-aasland · Pull Request #27944 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.9] bpo-27334: roll back transaction if sqlite3 context manager fails to commit (GH-26202) #27944

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 25, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
bpo-27334: Fix ref. leak
  • Loading branch information
Erlend E. Aasland committed Aug 25, 2021
commit 0c038e9911c0ceab75a7d881261f93620156bdba
1 change: 1 addition & 0 deletions Modules/_sqlite/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -1797,6 +1797,7 @@ pysqlite_connection_exit(pysqlite_Connection* self, PyObject* args)
_PyErr_ChainExceptions(exc, val, tb);
}
else {
Py_DECREF(result);
PyErr_Restore(exc, val, tb);
}
}
Expand Down
0