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

index c53638b38c4a8ca0dc65b2a9d290ef214dd9ceea..2dcccb29f93a3bd38e341ba8b522d946782b1616 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.