From 3dafa8f31ea238e16624e7237770367d0fe5f690 Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" Date: Tue, 4 Jan 2022 01:19:26 +0100 Subject: [PATCH] bpo-44092: Move What's New entry to where it belongs --- Doc/whatsnew/3.11.rst | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 4ddca744720f5a2..be6cb158a804920 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -291,6 +291,10 @@ sqlite3 experience. (Contributed by Erlend E. Aasland in :issue:`45828`.) +* 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`.) + sys --- @@ -302,11 +306,6 @@ 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 ---------