]> granicus.if.org Git - python/commitdiff
Added BUILD_SLICE opcode.
authorGuido van Rossum <guido@python.org>
Tue, 30 Jul 1996 16:41:26 +0000 (16:41 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 30 Jul 1996 16:41:26 +0000 (16:41 +0000)
Include/opcode.h

index 401f765f5f4f84e4c31b59c981d7193532d2523d..306ee596c3c5135b76c77fe61757ef8da4398a9c 100644 (file)
@@ -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};