1 parent 463fdd4 commit 27fed10Copy full SHA for 27fed10
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