From 4fd9eb2aca21489ea0841155cdb81cb30dda73d3 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Tue, 26 Nov 2024 02:00:46 +0100 Subject: Fix typo: Use AsyncFor element access in codegen (#127278) Use AsyncFor element access in codegen --- Python/codegen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/codegen.c b/Python/codegen.c index bce3b94..dbf36cd 100644 --- a/Python/codegen.c +++ b/Python/codegen.c @@ -2033,7 +2033,7 @@ codegen_async_for(compiler *c, stmt_ty s) ADDOP(c, loc, END_ASYNC_FOR); /* `else` block */ - VISIT_SEQ(c, stmt, s->v.For.orelse); + VISIT_SEQ(c, stmt, s->v.AsyncFor.orelse); USE_LABEL(c, end); return SUCCESS; -- cgit v0.12