]> granicus.if.org Git - python/commitdiff
PEP 214, Extended print Statement, has been accepted by the BDFL.
authorBarry Warsaw <barry@python.org>
Mon, 21 Aug 2000 15:36:27 +0000 (15:36 +0000)
committerBarry Warsaw <barry@python.org>
Mon, 21 Aug 2000 15:36:27 +0000 (15:36 +0000)
This adds the two new opcodes to support this feature: PRINT_ITEM_TO,
PRINT_NEWLINE_TO.

Include/opcode.h

index 1bd89ee876de8bd3d431bab8b3ffbbf8fa2847a4..a7b642ab16bece77fc48fab196f2d928f788faff 100644 (file)
@@ -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