]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-93370: Drop deprecated sqlite3.version from pythoninfo.py (#94277)
authorErlend Egeberg Aasland <erlend.aasland@protonmail.com>
Sun, 26 Jun 2022 10:10:28 +0000 (12:10 +0200)
committerGitHub <noreply@github.com>
Sun, 26 Jun 2022 10:10:28 +0000 (12:10 +0200)
Lib/test/pythoninfo.py

index 2339e0049ef6eae8dac1374eb9f17bd3475c6d17..172c03f30231cd05f936bac9f14bb948bc82bece 100644 (file)
@@ -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)