[Python-checkins] CVS: python/dist/src/Include parsetok.h,2.16,2.17

Neil Schemenauer nascheme@users.sourceforge.net
Fri, 22 Mar 2002 15:52:37 -0800


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

Modified Files:
	parsetok.h 
Log Message:
Disable the parser hacks that enabled the "yield" keyword using a future
statement.


Index: parsetok.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/parsetok.h,v
retrieving revision 2.16
retrieving revision 2.17
diff -C2 -d -r2.16 -r2.17
*** parsetok.h	16 Jul 2001 05:37:24 -0000	2.16
--- parsetok.h	22 Mar 2002 23:52:35 -0000	2.17
***************
*** 18,22 ****
--- 18,24 ----
  } perrdetail;
  
+ #if 0
  #define PyPARSE_YIELD_IS_KEYWORD	0x0001
+ #endif
  
  extern DL_IMPORT(node *) PyParser_ParseString(char *, grammar *, int,