https://github.com/python/cpython/commit/f71bdd34085d31a826148b2e5da57e0302655056
commit: f71bdd34085d31a826148b2e5da57e0302655056
branch: main
author: Kirill Podoprigora <[email protected]>
committer: serhiy-storchaka <[email protected]>
date: 2024-02-05T12:20:34+02:00
summary:

gh-115020: Remove a debugging print in test_frame (GH-115021)

files:
M Lib/test/test_frame.py

diff --git a/Lib/test/test_frame.py b/Lib/test/test_frame.py
index 244ce8af7cdf08..baed03d92b9e56 100644
--- a/Lib/test/test_frame.py
+++ b/Lib/test/test_frame.py
@@ -72,7 +72,6 @@ def inner():
         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())

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to