Skip to content

Commit 44501f5

Browse files
committed
Restore YIELD_FROM def_op
1 parent 33e1007 commit 44501f5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Lib/opcode.py

+4
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ def pseudo_op(name, op, real_ops):
109109
def_op('STORE_SUBSCR', 60)
110110
def_op('DELETE_SUBSCR', 61)
111111

112+
# TODO: RUSTPYTHON
113+
# Delete below def_op after updating coroutines.py
114+
def_op('YIELD_FROM', 72)
115+
112116
def_op('GET_ITER', 68)
113117
def_op('GET_YIELD_FROM_ITER', 69)
114118
def_op('PRINT_EXPR', 70)

0 commit comments

Comments
 (0)