]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-44092: Don't reset statements/cursors before rollback (GH-26026)
authorErlend Egeberg Aasland <erlend.aasland@innova.no>
Mon, 3 Jan 2022 19:02:39 +0000 (20:02 +0100)
committerGitHub <noreply@github.com>
Mon, 3 Jan 2022 19:02:39 +0000 (19:02 +0000)
commit9d6a239a34a66e16188d76c23a3a770515ca44ca
tree254afa367df14a95548df952452285de93cb37a3
parent9d35dedc5e7e940b639230fba93c763bd9f19c09
bpo-44092: Don't reset statements/cursors before rollback (GH-26026)

In SQLite versions pre 3.7.11, pending statements would block a rollback.  This is no longer the case, so remove the workaround.
Doc/whatsnew/3.11.rst
Lib/test/test_sqlite3/test_regression.py
Lib/test/test_sqlite3/test_transactions.py
Misc/NEWS.d/next/Library/2021-05-19-12-35-49.bpo-44092.hiSlI5.rst [new file with mode: 0644]
Modules/_sqlite/connection.c