[Python-checkins] CVS: python/dist/src/Include opcode.h,2.27,2.28

Barry Warsaw python-dev@python.org
Mon, 21 Aug 2000 08:36:30 -0700


Update of /cvsroot/python/python/dist/src/Include
In directory slayer.i.sourceforge.net:/tmp/cvs-serv22816

Modified Files:
	opcode.h 
Log Message:
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.


Index: opcode.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/opcode.h,v
retrieving revision 2.27
retrieving revision 2.28
diff -C2 -r2.27 -r2.28
*** opcode.h	2000/08/17 22:54:59	2.27
--- opcode.h	2000/08/21 15:36:27	2.28
***************
*** 61,64 ****
--- 61,66 ----
  #define PRINT_ITEM	71
  #define PRINT_NEWLINE	72
+ #define PRINT_ITEM_TO   73
+ #define PRINT_NEWLINE_TO 74
  
  #define BREAK_LOOP	80