From: Serhiy Storchaka Date: Thu, 12 Nov 2015 11:15:41 +0000 (+0200) Subject: Restore old distutils logging threshold after running test_log. X-Git-Tag: v3.5.1rc1~56^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fda7fe01484a3a53a6ba3365629e567488c73803;p=python Restore old distutils logging threshold after running test_log. --- diff --git a/Lib/distutils/tests/test_log.py b/Lib/distutils/tests/test_log.py index ce66ee51e7..0c2ad7a426 100644 --- a/Lib/distutils/tests/test_log.py +++ b/Lib/distutils/tests/test_log.py @@ -14,8 +14,8 @@ class TestLog(unittest.TestCase): # error handler) old_stdout = sys.stdout old_stderr = sys.stderr + old_threshold = log.set_threshold(log.DEBUG) try: - log.set_threshold(log.DEBUG) with NamedTemporaryFile(mode="w+", encoding='ascii') as stdout, \ NamedTemporaryFile(mode="w+", encoding='ascii') as stderr: sys.stdout = stdout @@ -27,6 +27,7 @@ class TestLog(unittest.TestCase): stderr.seek(0) self.assertEqual(stderr.read().rstrip(), "fatal:\\xe9") finally: + log.set_threshold(old_threshold) sys.stdout = old_stdout sys.stderr = old_stderr