[Python-checkins] CVS: python/dist/src/Python ceval.c,2.286,2.287

Tim Peters tim_one@users.sourceforge.net
Thu, 18 Oct 2001 13:49:38 -0700


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

Modified Files:
	ceval.c 
Log Message:
SF Patch (but with no patch) 472555 Remove trailing common in enumeration.
Some AIX compiler didn't like the trailing comma at the end of the
why_code enum decl.


Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.286
retrieving revision 2.287
diff -C2 -d -r2.286 -r2.287
*** ceval.c	2001/10/17 13:29:30	2.286
--- ceval.c	2001/10/18 20:49:35	2.287
***************
*** 471,475 ****
  		WHY_BREAK,	/* 'break' statement */
  		WHY_CONTINUE,	/* 'continue' statement */
! 		WHY_YIELD,	/* 'yield' operator */
  };
  
--- 471,475 ----
  		WHY_BREAK,	/* 'break' statement */
  		WHY_CONTINUE,	/* 'continue' statement */
! 		WHY_YIELD	/* 'yield' operator */
  };