]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-103186: Remove debug print in test_sys_settrace (GH-109077) (#109084)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 8 Sep 2023 13:22:19 +0000 (06:22 -0700)
committerGitHub <noreply@github.com>
Fri, 8 Sep 2023 13:22:19 +0000 (15:22 +0200)
gh-103186: Remove debug print in test_sys_settrace (GH-109077)
(cherry picked from commit e4bb0026b9a21d066e7a5c4716ea4d755b95d2d5)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Lib/test/test_sys_settrace.py

index 568c16044afe0685266604718c81e72f2f355bca..6fb9099bd36f622b9d73f11d7fc03dac19b1ce24 100644 (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