]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-115020: Remove a debugging print in test_frame (GH-115021)
authorKirill Podoprigora <kirill.bast9@mail.ru>
Mon, 5 Feb 2024 10:20:34 +0000 (13:20 +0300)
committerGitHub <noreply@github.com>
Mon, 5 Feb 2024 10:20:34 +0000 (12:20 +0200)
Lib/test/test_frame.py

index 244ce8af7cdf088a7059f845ff4bdb2fb9a9fb89..baed03d92b9e56181bf9712f49f7a969427fd44d 100644 (file)
@@ -72,7 +72,6 @@ class ClearTest(unittest.TestCase):
         except ZeroDivisionError as exc:
             support.gc_collect()
             self.assertIsNotNone(wr())
-            print(exc.__traceback__.tb_next.tb_frame.f_locals)
             exc.__traceback__.tb_next.tb_frame.clear()
             support.gc_collect()
             self.assertIsNone(wr())