diff options
author | Erlend Egeberg Aasland <erlend.aasland@protonmail.com> | 2022-06-26 10:10:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-26 10:10:28 (GMT) |
commit | 27934bef2dd9878e04707f090ff5c1ede3278aee (patch) | |
tree | f44c9c30c84d4055cd4d16273a306af6511628bd | |
parent | 32d595fdcd4be8e1f41dcfe84ccf4de89fea3c3f (diff) | |
download | cpython-27934bef2dd9878e04707f090ff5c1ede3278aee.zip cpython-27934bef2dd9878e04707f090ff5c1ede3278aee.tar.gz cpython-27934bef2dd9878e04707f090ff5c1ede3278aee.tar.bz2 |
gh-93370: Drop deprecated sqlite3.version from pythoninfo.py (#94277)
-rw-r--r-- | Lib/test/pythoninfo.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |