diff options
author | Kirill Podoprigora <kirill.bast9@mail.ru> | 2024-02-05 10:20:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 10:20:34 (GMT) |
commit | f71bdd34085d31a826148b2e5da57e0302655056 (patch) | |
tree | c0721ec410014831de58cccc41cf8b95d418da77 | |
parent | 39ec7fbba84663ab760853da2ac422c2e988d189 (diff) | |
download | cpython-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.py | 1 |
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()) |