summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKirill Podoprigora <kirill.bast9@mail.ru>2024-02-05 10:20:34 (GMT)
committerGitHub <noreply@github.com>2024-02-05 10:20:34 (GMT)
commitf71bdd34085d31a826148b2e5da57e0302655056 (patch)
treec0721ec410014831de58cccc41cf8b95d418da77
parent39ec7fbba84663ab760853da2ac422c2e988d189 (diff)
downloadcpython-f71bdd34085d31a826148b2e5da57e0302655056.zip
cpython-f71bdd34085d31a826148b2e5da57e0302655056.tar.gz
cpython-f71bdd34085d31a826148b2e5da57e0302655056.tar.bz2
gh-115020: Remove a debugging print in test_frame (GH-115021)
-rw-r--r--Lib/test/test_frame.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_frame.py b/Lib/test/test_frame.py
index 244ce8a..baed03d 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())