From: Barry Warsaw Date: Mon, 21 Aug 2000 15:36:27 +0000 (+0000) Subject: PEP 214, Extended print Statement, has been accepted by the BDFL. X-Git-Tag: v2.0b1~333 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35fd665981e1eb5a1ba3c88c17e5538178047532;p=python PEP 214, Extended print Statement, has been accepted by the BDFL. This adds the two new opcodes to support this feature: PRINT_ITEM_TO, PRINT_NEWLINE_TO. --- diff --git a/Include/opcode.h b/Include/opcode.h index 1bd89ee876..a7b642ab16 100644 --- a/Include/opcode.h +++ b/Include/opcode.h @@ -60,6 +60,8 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #define PRINT_EXPR 70 #define PRINT_ITEM 71 #define PRINT_NEWLINE 72 +#define PRINT_ITEM_TO 73 +#define PRINT_NEWLINE_TO 74 #define BREAK_LOOP 80