From 5eb75a1eeaf43ee804a91392a532beffde993208 Mon Sep 17 00:00:00 2001 From: fry69 <142489379+fry69@users.noreply.github.com> Date: Wed, 16 Oct 2024 07:28:36 +0200 Subject: [PATCH 1/3] mention actual sqlite3 version attribute in 3.14.rst --- Doc/whatsnew/3.14.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index b106578fe9e8b0..b71ed08ea2acfe 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -572,7 +572,9 @@ pty sqlite3 ------- -* Remove :data:`!version` and :data:`!version_info` from :mod:`sqlite3`. +* Remove :data:`!version` and :data:`!version_info` from :mod:`sqlite3`; + use :data:`sqlite_version` and :data:`sqlite_version_info` for actual SQLite3 + version information. (Contributed by Hugo van Kemenade in :gh:`118924`.) * Disallow using a sequence of parameters with named placeholders. From bdf7781e94e48a69fbd0d4638758f988f2fb4ccd Mon Sep 17 00:00:00 2001 From: fry69 <142489379+fry69@users.noreply.github.com> Date: Wed, 16 Oct 2024 07:41:53 +0200 Subject: [PATCH 2/3] fix test --- Doc/whatsnew/3.14.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index b71ed08ea2acfe..f3e1c53cb925f2 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -573,7 +573,7 @@ sqlite3 ------- * Remove :data:`!version` and :data:`!version_info` from :mod:`sqlite3`; - use :data:`sqlite_version` and :data:`sqlite_version_info` for actual SQLite3 + use :data:`!sqlite_version` and :data:`!sqlite_version_info` for actual SQLite3 version information. (Contributed by Hugo van Kemenade in :gh:`118924`.) From 8f8acb3ba5dbf32affa7b48b0d93a60abfa33c6a Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sun, 29 Jun 2025 18:27:46 +0300 Subject: [PATCH 3/3] Link to the existing ones --- Doc/whatsnew/3.14.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index f3e1c53cb925f2..ea6032fe8e6c9f 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -573,8 +573,8 @@ sqlite3 ------- * Remove :data:`!version` and :data:`!version_info` from :mod:`sqlite3`; - use :data:`!sqlite_version` and :data:`!sqlite_version_info` for actual SQLite3 - version information. + use :data:`~sqlite3.sqlite_version` and :data:`~sqlite3.sqlite_version_info` + for the actual version number of the runtime SQLite library. (Contributed by Hugo van Kemenade in :gh:`118924`.) * Disallow using a sequence of parameters with named placeholders.