aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/codegen.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/codegen.c')
-rw-r--r--Python/codegen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/codegen.c b/Python/codegen.c
index bce3b94b27a..dbf36cdc0b7 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;