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

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Thu, 13 Jun 2002 10:59:53 -0700


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

Modified Files:
	dis.py 
Log Message:
The opcode FOR_LOOP no longer exists.

Index: dis.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/dis.py,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** dis.py	11 Jun 2002 21:17:35 -0000	1.40
--- dis.py	13 Jun 2002 17:59:51 -0000	1.41
***************
*** 263,267 ****
  jrel_op('JUMP_IF_TRUE', 112)    # ""
  jabs_op('JUMP_ABSOLUTE', 113)   # Target byte offset from beginning of code
- jrel_op('FOR_LOOP', 114)        # Number of bytes to skip
  
  name_op('LOAD_GLOBAL', 116)     # Index in name list
--- 263,266 ----