8000 [3.11] gh-93370: Don't print deprecated pysqlite version in test_sqlite3 (GH-95017) by miss-islington · Pull Request #95024 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.11] gh-93370: Don't print deprecated pysqlite version in test_sqlite3 (GH-95017) #95024

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-93370: Don't print deprecated pysqlite version in test_sqlite3 (GH…
…-95017)

(cherry picked from commit be09bae)

Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
  • Loading branch information
erlend-aasland authored and miss-islington committed Jul 19, 2022
commit dc100d4b4eb3e3c2a4884b29b129c2ce7ee13481
4 changes: 1 addition & 3 deletions Lib/test/test_sqlite3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,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}")
0