diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2022-01-03 19:02:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-03 19:02:39 (GMT) |
commit | 9d6a239a34a66e16188d76c23a3a770515ca44ca (patch) | |
tree | 254afa367df14a95548df952452285de93cb37a3 /Misc | |
parent | 9d35dedc5e7e940b639230fba93c763bd9f19c09 (diff) | |
download | cpython-9d6a239a34a66e16188d76c23a3a770515ca44ca.zip cpython-9d6a239a34a66e16188d76c23a3a770515ca44ca.tar.gz cpython-9d6a239a34a66e16188d76c23a3a770515ca44ca.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-05-19-12-35-49.bpo-44092.hiSlI5.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-05-19-12-35-49.bpo-44092.hiSlI5.rst b/Misc/NEWS.d/next/Library/2021-05-19-12-35-49.bpo-44092.hiSlI5.rst new file mode 100644 index 0000000..6777781 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-05-19-12-35-49.bpo-44092.hiSlI5.rst @@ -0,0 +1,3 @@ +Fetch across rollback no longer raises :exc:`~sqlite3.InterfaceError`. Instead +we leave it to the SQLite library to handle these cases. +Patch by Erlend E. Aasland. |