From 98ee91b40a57ec6b41d5f385573cff396d800dc4 Mon Sep 17 00:00:00 2001 From: Max Bernstein Date: Tue, 28 Nov 2023 16:03:01 -0500 Subject: [PATCH] Remove print for tests --- runtime/bytecode.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/runtime/bytecode.cpp b/runtime/bytecode.cpp index 6a031701a..2244b4b23 100644 --- a/runtime/bytecode.cpp +++ b/runtime/bytecode.cpp @@ -442,8 +442,6 @@ static void analyzeDefiniteAssignment(Thread* thread, } } } - fprintf(stderr, "%s %ld\n", Str::cast(function.qualname()).toCStr(), - num_iterations); DTRACE_PROBE1(python, DefiniteAssignmentIterations, num_iterations); }