From: Guido van Rossum Date: Tue, 30 Jul 1996 16:41:26 +0000 (+0000) Subject: Added BUILD_SLICE opcode. X-Git-Tag: v1.4b2~136 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=db3b04104aec9a7cf6400d886f6f991cfd1524e3;p=python Added BUILD_SLICE opcode. --- diff --git a/Include/opcode.h b/Include/opcode.h index 401f765f5f..306ee596c3 100644 --- a/Include/opcode.h +++ b/Include/opcode.h @@ -139,6 +139,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define RAISE_VARARGS 130 /* Number of raise arguments (1, 2 or 3) */ #define CALL_FUNCTION 131 /* #args + (#kwargs<<8) */ #define MAKE_FUNCTION 132 /* #defaults */ +#define BUILD_SLICE 133 /* Number of items */ /* Comparison operator codes (argument to COMPARE_OP) */ enum cmp_op {LT, LE, EQ, NE, GT, GE, IN, NOT_IN, IS, IS_NOT, EXC_MATCH, BAD};