mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-46841: Use inline caching for UNPACK_SEQUENCE
(GH-31591)
This commit is contained in:
parent
c32aef4853
commit
424ecab494
7 changed files with 39 additions and 29 deletions
|
@ -109,7 +109,7 @@ HAVE_ARGUMENT = 90 # Opcodes from here have an argument:
|
|||
|
||||
name_op('STORE_NAME', 90) # Index in name list
|
||||
name_op('DELETE_NAME', 91) # ""
|
||||
def_op('UNPACK_SEQUENCE', 92) # Number of tuple items
|
||||
def_op('UNPACK_SEQUENCE', 92, 1) # Number of tuple items
|
||||
jrel_op('FOR_ITER', 93)
|
||||
def_op('UNPACK_EX', 94)
|
||||
name_op('STORE_ATTR', 95) # Index in name list
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue