diff options
author | Erlend Egeberg Aasland <erlend.aasland@protonmail.com> | 2022-07-19 21:04:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-19 21:04:20 (GMT) |
commit | be09bae608cae90e50dbf71b585b5ee386fdd952 (patch) | |
tree | 182582929e52c055f2878cad7682ebc4bc92aad2 /Lib | |
parent | 49aeff49d71fa4bd935212340410311f13879447 (diff) | |
download | cpython-be09bae608cae90e50dbf71b585b5ee386fdd952.zip cpython-be09bae608cae90e50dbf71b585b5ee386fdd952.tar.gz cpython-be09bae608cae90e50dbf71b585b5ee386fdd952.tar.bz2 |
gh-93370: Don't print deprecated pysqlite version in test_sqlite3 (#95017)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_sqlite3/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/test/test_sqlite3/__init__.py b/Lib/test/test_sqlite3/__init__.py index c3cab8f..d777fca 100644 --- a/Lib/test/test_sqlite3/__init__.py +++ b/Lib/test/test_sqlite3/__init__.py @@ -12,6 +12,4 @@ def load_tests(*args): return load_package_tests(pkg_dir, *args) if verbose: - print("test_sqlite3: testing with version", - "{!r}, sqlite_version {!r}".format(sqlite3.version, - sqlite3.sqlite_version)) + print(f"test_sqlite3: testing with SQLite version {sqlite3.sqlite_version}") |