[Python-checkins] python/dist/src/Python future.c,2.11,2.12

tim_one@sourceforge.net tim_one@sourceforge.net
Thu, 11 Apr 2002 18:20:13 -0700


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

Modified Files:
	future.c 
Log Message:
Removed more hair in support of future-generator stmts.


Index: future.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/future.c,v
retrieving revision 2.11
retrieving revision 2.12
diff -C2 -d -r2.11 -r2.12
*** future.c	20 Aug 2001 20:32:33 -0000	2.11
--- future.c	12 Apr 2002 01:20:10 -0000	2.12
***************
*** 36,40 ****
  			continue;
  		} else if (strcmp(feature, FUTURE_GENERATORS) == 0) {
! 			ff->ff_features |= CO_GENERATOR_ALLOWED;
  		} else if (strcmp(feature, FUTURE_DIVISION) == 0) {
  			ff->ff_features |= CO_FUTURE_DIVISION;
--- 36,40 ----
  			continue;
  		} else if (strcmp(feature, FUTURE_GENERATORS) == 0) {
! 			continue;
  		} else if (strcmp(feature, FUTURE_DIVISION) == 0) {
  			ff->ff_features |= CO_FUTURE_DIVISION;