diff options
author | sobolevn <mail@sobolevn.me> | 2025-03-13 22:54:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-13 22:54:17 +0300 |
commit | 1a8e5742cdcf3dba7fc592d036adab49877c42ba (patch) | |
tree | de7900da4547e1e8537a72bb49123ac359436b60 | |
parent | ec46a55d63eaf015c2cd544b8c727ed7cbb81d33 (diff) | |
download | cpython-1a8e5742cdcf3dba7fc592d036adab49877c42ba.tar.gz cpython-1a8e5742cdcf3dba7fc592d036adab49877c42ba.zip |
Remove `print` from `test_monitoring.py` (#131200)
-rw-r--r-- | Lib/test/test_monitoring.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_monitoring.py b/Lib/test/test_monitoring.py index 23b0d56c767..263e4e6f394 100644 --- a/Lib/test/test_monitoring.py +++ b/Lib/test/test_monitoring.py @@ -1733,7 +1733,6 @@ class TestBranchConsistency(MonitoringTestBase, unittest.TestCase): for (src, left, right) in test_func.__code__.co_branches(): lefts.add((src, left)) rights.add((src, right)) - print(event_list) for event in event_list: way, _, src, dest = event if "left" in way: |