Skip to content

Commit 9f709bf

Browse files
committed
The opcode YIELD_STMT was accidentally called YIELD_VALUE here.
1 parent a039274 commit 9f709bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/dis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def jabs_op(name, op):
228228
def_op('RETURN_VALUE', 83)
229229
def_op('IMPORT_STAR', 84)
230230
def_op('EXEC_STMT', 85)
231-
def_op('YIELD_STMT', 86)
231+
def_op('YIELD_VALUE', 86)
232232

233233
def_op('POP_BLOCK', 87)
234234
def_op('END_FINALLY', 88)

0 commit comments

Comments
 (0)