mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
New opcodes BINARY_POWER, RAISE_VARARGS, CALL_FUNCTION, MAKE_FUNCTION
This commit is contained in:
parent
7a1c7918e0
commit
6e21cebfbb
1 changed files with 5 additions and 0 deletions
|
|
@ -101,6 +101,7 @@ def jabs_op(name, op):
|
|||
def_op('UNARY_CALL', 14)
|
||||
def_op('UNARY_INVERT', 15)
|
||||
|
||||
def_op('BINARY_POWER', 19)
|
||||
def_op('BINARY_MULTIPLY', 20)
|
||||
def_op('BINARY_DIVIDE', 21)
|
||||
def_op('BINARY_MODULO', 22)
|
||||
|
|
@ -188,3 +189,7 @@ def jabs_op(name, op):
|
|||
|
||||
def_op('SET_LINENO', 127) # Current line number
|
||||
SET_LINENO = 127
|
||||
|
||||
def_op('RAISE_VARARGS', 130)
|
||||
def_op('CALL_FUNCTION', 131)
|
||||
def_op('MAKE_FUNCTION', 132)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue