From: Erlend Egeberg Aasland Date: Sun, 26 Jun 2022 10:10:28 +0000 (+0200) Subject: gh-93370: Drop deprecated sqlite3.version from pythoninfo.py (#94277) X-Git-Tag: v3.12.0a1~1108 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27934bef2dd9878e04707f090ff5c1ede3278aee;p=thirdparty%2FPython%2Fcpython.git gh-93370: Drop deprecated sqlite3.version from pythoninfo.py (#94277) --- diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py index 2339e0049ef6..172c03f30231 100644 --- a/Lib/test/pythoninfo.py +++ b/Lib/test/pythoninfo.py @@ -602,7 +602,7 @@ def collect_sqlite(info_add): except ImportError: return - attributes = ('version', 'sqlite_version') + attributes = ('sqlite_version',) copy_attributes(info_add, sqlite3, 'sqlite3.%s', attributes)