[Python-checkins] python/dist/src/Lib dis.py,1.39,1.40

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Tue, 11 Jun 2002 14:17:37 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv1275

Modified Files:
	dis.py 
Log Message:
The opcode YIELD_STMT was accidentally called YIELD_VALUE here.


Index: dis.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/dis.py,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** dis.py	1 Jun 2002 00:57:55 -0000	1.39
--- dis.py	11 Jun 2002 21:17:35 -0000	1.40
***************
*** 229,233 ****
  def_op('IMPORT_STAR', 84)
  def_op('EXEC_STMT', 85)
! def_op('YIELD_STMT', 86)
  
  def_op('POP_BLOCK', 87)
--- 229,233 ----
  def_op('IMPORT_STAR', 84)
  def_op('EXEC_STMT', 85)
! def_op('YIELD_VALUE', 86)
  
  def_op('POP_BLOCK', 87)