[3.12] gh-103186: Remove debug print in test_sys_settrace (GH-109077) (#109084)

gh-103186: Remove debug print in test_sys_settrace (GH-109077)
(cherry picked from commit e4bb0026b9)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
Miss Islington (bot) 2023-09-08 06:22:19 -07:00 committed by GitHub
parent 26f42b34f1
commit 02e51f86d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1632,7 +1632,6 @@ class TraceTestCase(unittest.TestCase):
except Exception as ex:
count = 0
tb = ex.__traceback__
print(tb)
while tb:
if tb.tb_frame.f_code.co_name == "test_settrace_error":
count += 1