From 27934bef2dd9878e04707f090ff5c1ede3278aee Mon Sep 17 00:00:00 2001 From: Erlend Egeberg Aasland Date: Sun, 26 Jun 2022 12:10:28 +0200 Subject: gh-93370: Drop deprecated sqlite3.version from pythoninfo.py (#94277) --- Lib/test/pythoninfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py index 2339e00..172c03f 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) -- cgit v0.12