From: Petri Lehtinen Date: Fri, 17 Feb 2012 19:30:55 +0000 (+0200) Subject: Fix a variable scoping error in an sqlite3 test X-Git-Tag: v3.2.3rc1~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c86d9e2846e5bcf7f047f96e5c95432ecfa4bcb7;p=thirdparty%2FPython%2Fcpython.git Fix a variable scoping error in an sqlite3 test Closes #11689. --- diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py index a6161fac8539..a92e8387861c 100644 --- a/Lib/sqlite3/test/hooks.py +++ b/Lib/sqlite3/test/hooks.py @@ -168,6 +168,7 @@ class ProgressTests(unittest.TestCase): con = sqlite.connect(":memory:") action = 0 def progress(): + nonlocal action action = 1 return 0 con.set_progress_handler(progress, 1) diff --git a/Misc/NEWS b/Misc/NEWS index 9c6485576b42..754baab6d631 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -477,6 +477,8 @@ Tools/Demos Tests ----- +- Issue #11689: Fix a variable scoping error in an sqlite3 test + - Issue #13786: Remove unimplemented 'trace' long option from regrtest.py. - Issue #13725: Fix regrtest to recognize the documented -d flag.