From: Erlend Egeberg Aasland Date: Tue, 19 Jul 2022 21:04:20 +0000 (+0200) Subject: gh-93370: Don't print deprecated pysqlite version in test_sqlite3 (#95017) X-Git-Tag: v3.12.0a1~914 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=be09bae608cae90e50dbf71b585b5ee386fdd952;p=thirdparty%2FPython%2Fcpython.git gh-93370: Don't print deprecated pysqlite version in test_sqlite3 (#95017) --- diff --git a/Lib/test/test_sqlite3/__init__.py b/Lib/test/test_sqlite3/__init__.py index c3cab8f0acdc..d777fca82da4 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}")