summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2022-01-03 19:02:39 (GMT)
committerGitHub <noreply@github.com>2022-01-03 19:02:39 (GMT)
commit9d6a239a34a66e16188d76c23a3a770515ca44ca (patch)
tree254afa367df14a95548df952452285de93cb37a3 /Doc
parent9d35dedc5e7e940b639230fba93c763bd9f19c09 (diff)
downloadcpython-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 'Doc')
-rw-r--r--Doc/whatsnew/3.11.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index faa63a9..4ddca74 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -302,6 +302,11 @@ sys
(Contributed by Irit Katriel in :issue:`45711`.)
+* Fetch across rollback no longer raises :exc:`~sqlite3.InterfaceError`.
+ Instead we leave it to the SQLite library to handle these cases.
+ (Contributed by Erlend E. Aasland in :issue:`44092`.)
+
+
threading
---------