]> granicus.if.org Git - python/commitdiff
New opcodes BINARY_POWER, RAISE_VARARGS, CALL_FUNCTION, MAKE_FUNCTION
authorGuido van Rossum <guido@python.org>
Sun, 21 Jul 1996 02:16:53 +0000 (02:16 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 21 Jul 1996 02:16:53 +0000 (02:16 +0000)
Lib/dis.py

index 846dc32ba149ce3205d207fb1790f8341407d3c5..897bc6d8fc9e00b0e8a67e71df6473c24bdcd181 100644 (file)
@@ -101,6 +101,7 @@ def_op('UNARY_CONVERT', 13)
 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_op('DELETE_FAST', 126)  # Local variable number
 
 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)