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

Jeremy Hylton jhylton@users.sourceforge.net
Thu, 01 Feb 2001 14:48:14 -0800


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

Modified Files:
	opcode.h 
Log Message:
Allow 'continue' inside 'try' clause
SF patch 102989 by Thomas Wouters


Index: opcode.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/opcode.h,v
retrieving revision 2.33
retrieving revision 2.34
diff -C2 -r2.33 -r2.34
*** opcode.h	2001/01/25 20:06:58	2.33
--- opcode.h	2001/02/01 22:48:12	2.34
***************
*** 105,108 ****
--- 105,109 ----
  #define LOAD_GLOBAL	116	/* Index in name list */
  
+ #define CONTINUE_LOOP	119	/* Start of loop (absolute) */
  #define SETUP_LOOP	120	/* Target address (absolute) */
  #define SETUP_EXCEPT	121	/* "" */