From 4c122631da19e4949fcd5e99b5d3c68d091d68c8 Mon Sep 17 00:00:00 2001 From: Tian Gao Date: Mon, 14 Jul 2025 14:19:04 -0700 Subject: [PATCH] Fix a minor indentation error --- Python/instrumentation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/instrumentation.c b/Python/instrumentation.c index 13bdd041becd69..5b9da271d2745e 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 */