[Python-checkins] gh-93370: Drop deprecated sqlite3.version from pythoninfo.py (#94277)

erlend-aasland webhook-mailer at python.org
Sun Jun 26 06:10:32 EDT 2022


https://github.com/python/cpython/commit/27934bef2dd9878e04707f090ff5c1ede3278aee
commit: 27934bef2dd9878e04707f090ff5c1ede3278aee
branch: main
author: Erlend Egeberg Aasland <erlend.aasland at protonmail.com>
committer: erlend-aasland <erlend.aasland at protonmail.com>
date: 2022-06-26T12:10:28+02:00
summary:

gh-93370: Drop deprecated sqlite3.version from pythoninfo.py (#94277)

files:
M Lib/test/pythoninfo.py

diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py
index 2339e0049ef6e..172c03f30231c 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)
 
 



More information about the Python-checkins mailing list