summaryrefslogtreecommitdiffstats
path: root/Include/opcode.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-12-16 13:07:35 (GMT)
committerGuido van Rossum <guido@python.org>1991-12-16 13:07:35 (GMT)
commit750bf14c32b04a7c2a05812f5e313303234272c7 (patch)
treee7dd60b389c9ed7074d8a777c687dbb3fff18e33 /Include/opcode.h
parentc06022966f58b7130e0a8b7150d1955865c84dc8 (diff)
downloadcpython-750bf14c32b04a7c2a05812f5e313303234272c7.zip
cpython-750bf14c32b04a7c2a05812f5e313303234272c7.tar.gz
cpython-750bf14c32b04a7c2a05812f5e313303234272c7.tar.bz2
Added UNPACK_ARG.
Diffstat (limited to 'Include/opcode.h')
-rw-r--r--Include/opcode.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Include/opcode.h b/Include/opcode.h
index 3fdcd9d..08744f9 100644
--- a/Include/opcode.h
+++ b/Include/opcode.h
@@ -72,8 +72,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define RAISE_EXCEPTION 81
#define LOAD_LOCALS 82
#define RETURN_VALUE 83
+/*
#define REQUIRE_ARGS 84
#define REFUSE_ARGS 85
+*/
#define BUILD_FUNCTION 86
#define POP_BLOCK 87
#define END_FINALLY 88
@@ -85,7 +87,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define DELETE_NAME 91 /* "" */
#define UNPACK_TUPLE 92 /* Number of tuple items */
#define UNPACK_LIST 93 /* Number of list items */
-/* unused: 94 */
+#define UNPACK_ARG 94 /* Number of arguments */
#define STORE_ATTR 95 /* Index in name list */
#define DELETE_ATTR 96 /* "" */
#define STORE_GLOBAL 97 /* "" */