[Python-checkins] CVS: python/dist/src/Lib dis.py,1.23,1.24

Barry Warsaw python-dev@python.org
Mon, 21 Aug 2000 10:18:43 -0700


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

Modified Files:
	dis.py 
Log Message:
Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes.


Index: dis.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/dis.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -r1.23 -r1.24
*** dis.py	2000/08/17 22:54:59	1.23
--- dis.py	2000/08/21 17:18:40	1.24
***************
*** 191,194 ****
--- 191,196 ----
  def_op('PRINT_ITEM', 71)
  def_op('PRINT_NEWLINE', 72)
+ def_op('PRINT_ITEM_TO', 73)
+ def_op('PRINT_NEWLINE_TO', 74)
  
  def_op('BREAK_LOOP', 80)