summaryrefslogtreecommitdiffstats
path: root/Include/opcode.h
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2000-08-21 15:36:27 (GMT)
committerBarry Warsaw <barry@python.org>2000-08-21 15:36:27 (GMT)
commit35fd665981e1eb5a1ba3c88c17e5538178047532 (patch)
treef3b623d00990a765523039d3a959dc9847c55ab3 /Include/opcode.h
parent0360663e8e8b0e7b18ce8d390995fcbad140f7e0 (diff)
downloadcpython-35fd665981e1eb5a1ba3c88c17e5538178047532.zip
cpython-35fd665981e1eb5a1ba3c88c17e5538178047532.tar.gz
cpython-35fd665981e1eb5a1ba3c88c17e5538178047532.tar.bz2
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.
Diffstat (limited to 'Include/opcode.h')
-rw-r--r--Include/opcode.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/opcode.h b/Include/opcode.h
index 1bd89ee..a7b642a 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