Skip to content

Commit e9ac731

Browse files
committed
Adjust formatting.
1 parent 4b5e71d commit e9ac731

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Python/codegen.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,7 @@ codegen_async_yield_from(compiler *c, location loc, expr_ty e)
597597
// extra copy.
598598
ADDOP_I(c, loc, COPY, 2);
599599
// Stack: [aiterator, wrapped_result, aiterator]
600+
600601
ADDOP_I(c, loc, SWAP, 2);
601602
// Stack: [aiterator, aiterator, wrapped_result]
602603

@@ -607,6 +608,7 @@ codegen_async_yield_from(compiler *c, location loc, expr_ty e)
607608

608609
ADDOP_I(c, loc, SWAP, 2);
609610
// Stack: [aiterator, resumed_value, aiterator]
611+
610612
ADDOP(c, loc, POP_TOP);
611613
// Stack: [aiterator, resumed_value]
612614

0 commit comments

Comments
 (0)