From: Kirill Podoprigora Date: Mon, 5 Feb 2024 10:20:34 +0000 (+0300) Subject: gh-115020: Remove a debugging print in test_frame (GH-115021) X-Git-Tag: v3.13.0a4~154 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f71bdd34085d31a826148b2e5da57e0302655056;p=thirdparty%2FPython%2Fcpython.git gh-115020: Remove a debugging print in test_frame (GH-115021) --- diff --git a/Lib/test/test_frame.py b/Lib/test/test_frame.py index 244ce8af7cdf..baed03d92b9e 100644 --- a/Lib/test/test_frame.py +++ b/Lib/test/test_frame.py @@ -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())