From db2032407a0c4928f3bdff63bba0456bf99e257e Mon Sep 17 00:00:00 2001 From: Tian Gao Date: Mon, 14 Jul 2025 17:01:56 -0700 Subject: [PATCH] Fix a minor indentation error (#136661) --- Python/instrumentation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/instrumentation.c b/Python/instrumentation.c index 13bdd041bec..5b9da271d27 100644 --- a/Python/instrumentation.c +++ b/Python/instrumentation.c @@ -1530,7 +1530,7 @@ initialize_lines(PyCodeObject *code, int bytes_per_entry) case END_FOR: case END_SEND: case RESUME: - case POP_ITER: + case POP_ITER: /* END_FOR cannot start a line, as it is skipped by FOR_ITER * END_SEND cannot start a line, as it is skipped by SEND * RESUME and POP_ITER must not be instrumented with INSTRUMENTED_LINE */