From b322fb2a6c1bab783bc1ec9fb7848a04cb03dc6a Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" Date: Wed, 6 Aug 2025 10:19:09 +0200 Subject: [PATCH 1/2] gh-133390: Amend gh-135659 (sqlite3 docs update) - The SQLITE_KEYWORDS constant describes SQLite, not sqlite3, keywords - SQLITE_KEYWORDS were added in 3.14, not in upcoming 3.15 --- Doc/library/sqlite3.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index a14af6d3d88df2..f73290db206834 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -509,12 +509,12 @@ Module constants .. data:: SQLITE_KEYWORDS - A :class:`tuple` containing all sqlite3 keywords. + A :class:`tuple` containing all SQLite keywords. This constant is only available if Python was compiled with SQLite 3.24.0 or greater. - .. versionadded:: next + .. versionadded:: 3.14 .. data:: threadsafety From 76ce467bd72637a8ff8a4d947c6de03fb295128f Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" Date: Wed, 6 Aug 2025 10:39:17 +0200 Subject: [PATCH 2/2] Address review: SQLITE_KEYWORDS were added in 3.15 --- Doc/library/sqlite3.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index f73290db206834..d317ead66f9bcb 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -514,7 +514,7 @@ Module constants This constant is only available if Python was compiled with SQLite 3.24.0 or greater. - .. versionadded:: 3.14 + .. versionadded:: next .. data:: threadsafety