diff options
author | Guido van Rossum <guido@python.org> | 1998-07-07 14:58:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-07-07 14:58:39 (GMT) |
commit | 9d865e1a3024846032cea47beecaaa1ddeaebfa4 (patch) | |
tree | 195152ba2d9ed04f4270ac16ca1cb7c1eccf8fdc /Include/opcode.h | |
parent | 7bda89f69422c5877006c6632a044be50a41e814 (diff) | |
download | cpython-9d865e1a3024846032cea47beecaaa1ddeaebfa4.zip cpython-9d865e1a3024846032cea47beecaaa1ddeaebfa4.tar.gz cpython-9d865e1a3024846032cea47beecaaa1ddeaebfa4.tar.bz2 |
Get rid of some obsolete opcodes.
Diffstat (limited to 'Include/opcode.h')
-rw-r--r-- | Include/opcode.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Include/opcode.h b/Include/opcode.h index 52c8744..8b6890f 100644 --- a/Include/opcode.h +++ b/Include/opcode.h @@ -99,12 +99,10 @@ PERFORMANCE OF THIS SOFTWARE. #define DELETE_NAME 91 /* "" */ #define UNPACK_TUPLE 92 /* Number of tuple items */ #define UNPACK_LIST 93 /* Number of list items */ -#define UNPACK_ARG 94 /* Number of arguments */ #define STORE_ATTR 95 /* Index in name list */ #define DELETE_ATTR 96 /* "" */ #define STORE_GLOBAL 97 /* "" */ #define DELETE_GLOBAL 98 /* "" */ -#define UNPACK_VARARG 99 /* Minimal number of arguments */ #define LOAD_CONST 100 /* Index in const list */ #define LOAD_NAME 101 /* Index in name list */ @@ -122,11 +120,8 @@ PERFORMANCE OF THIS SOFTWARE. #define JUMP_ABSOLUTE 113 /* Target byte offset from beginning of code */ #define FOR_LOOP 114 /* Number of bytes to skip */ -#define LOAD_LOCAL 115 /* Index in name list */ #define LOAD_GLOBAL 116 /* Index in name list */ -#define SET_FUNC_ARGS 117 /* Argcount */ - #define SETUP_LOOP 120 /* Target address (absolute) */ #define SETUP_EXCEPT 121 /* "" */ #define SETUP_FINALLY 122 /* "" */ |