]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-123299: Provide replacement for removed sqlite3 attributes in What's New 3.14...
authorfry69 <142489379+fry69@users.noreply.github.com>
Sun, 29 Jun 2025 15:34:45 +0000 (17:34 +0200)
committerGitHub <noreply@github.com>
Sun, 29 Jun 2025 15:34:45 +0000 (15:34 +0000)
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Doc/whatsnew/3.14.rst

index a74d414ae4bb70a1a01a1b00ab9287472371d896..8260f8ddc4e08c016fbe006093e774a1efebb29b 100644 (file)
@@ -2640,7 +2640,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:`~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.