Thanks to visit codestin.com Credit goes to github.com
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 b389022 commit c86d9e2Copy full SHA for c86d9e2
2 files changed
Lib/sqlite3/test/hooks.py
@@ -168,6 +168,7 @@ def CheckClearHandler(self):
168
con = sqlite.connect(":memory:")
169
action = 0
170
def progress():
171
+ nonlocal action
172
action = 1
173
return 0
174
con.set_progress_handler(progress, 1)
Misc/NEWS
@@ -477,6 +477,8 @@ Tools/Demos
477
Tests
478
-----
479
480
+- Issue #11689: Fix a variable scoping error in an sqlite3 test
481
+
482
- Issue #13786: Remove unimplemented 'trace' long option from regrtest.py.
483
484
- Issue #13725: Fix regrtest to recognize the documented -d flag.
0 commit comments