We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f8267b commit 2a373daCopy full SHA for 2a373da
Lib/test/test_sqlite3/test_regression.py
@@ -433,6 +433,7 @@ def test_table_lock_cursor_dealloc(self):
433
con.commit()
434
cur = con.execute("select t from t")
435
del cur
436
+ support.gc_collect()
437
con.execute("drop table t")
438
439
@@ -448,6 +449,7 @@ def dup(v):
448
449
con.create_function("dup", 1, dup)
450
cur = con.execute("select dup(t) from t")
451
452
453
454
455
0 commit comments