8000 bpo-40956: Convert sqlite3.connect and sqlite3.Connection.__init__ to AC by erlend-aasland · Pull Request #24421 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-40956: Convert sqlite3.connect and sqlite3.Connection.__init__ to AC #24421

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

Merged
merged 17 commits into from
Jun 20, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove unused var from test_dont_check_same_thread
  • Loading branch information
Erlend E. Aasland committed Jun 6, 2021
commit 39ed36be2c6b5109987190be9b3ab2d78b4937ab
2 changes: 1 addition & 1 deletion Lib/sqlite3/test/dbapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ def run(cur, errors):
def test_dont_check_same_thread(self):
def run(con, err):
try:
cur = con.execute("select 1")
con.execute("select 1")
except sqlite.Error:
err.append("multi-threading not allowed")

Expand Down
0