Skip to content
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):
Comment thread
erlend-aasland marked this conversation as resolved.
Comment thread
erlend-aasland marked this conversation as resolved.
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