mirror of
https://github.com/python/cpython.git
synced 2025-10-13 10:23:28 +00:00
Fix typo: Use AsyncFor element access in codegen (#127278)
Use AsyncFor element access in codegen
This commit is contained in:
parent
193890c1cc
commit
4fd9eb2aca
1 changed files with 1 additions and 1 deletions
|
@ -2033,7 +2033,7 @@ codegen_async_for(compiler *c, stmt_ty s)
|
||||||
ADDOP(c, loc, END_ASYNC_FOR);
|
ADDOP(c, loc, END_ASYNC_FOR);
|
||||||
|
|
||||||
/* `else` block */
|
/* `else` block */
|
||||||
VISIT_SEQ(c, stmt, s->v.For.orelse);
|
VISIT_SEQ(c, stmt, s->v.AsyncFor.orelse);
|
||||||
|
|
||||||
USE_LABEL(c, end);
|
USE_LABEL(c, end);
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue