summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys_settrace.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-09-08 13:22:19 (GMT)
committerGitHub <noreply@github.com>2023-09-08 13:22:19 (GMT)
commit02e51f86d8fcb283e47f67cfd613cc923571c2db (patch)
tree6b227fa1567c0f3ad5419e806f4db02051e4d56e /Lib/test/test_sys_settrace.py
parent26f42b34f1e67b286655f79d73fd249935d46d12 (diff)
downloadcpython-02e51f86d8fcb283e47f67cfd613cc923571c2db.zip
cpython-02e51f86d8fcb283e47f67cfd613cc923571c2db.tar.gz
cpython-02e51f86d8fcb283e47f67cfd613cc923571c2db.tar.bz2
[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 e4bb0026b9a21d066e7a5c4716ea4d755b95d2d5) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Lib/test/test_sys_settrace.py')
-rw-r--r--Lib/test/test_sys_settrace.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_sys_settrace.py b/Lib/test/test_sys_settrace.py
index 568c160..6fb9099 100644
--- a/Lib/test/test_sys_settrace.py
+++ b/Lib/test/test_sys_settrace.py
@@ -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