[Python-checkins] CVS: python/dist/src/Mac/scripts gensuitemodule.py,1.19,1.20

Jack Jansen jackjansen@users.sourceforge.net
Thu, 24 Jan 2002 04:36:53 -0800


Update of /cvsroot/python/python/dist/src/Mac/scripts
In directory usw-pr-cvs1:/tmp/cvs-serv7206

Modified Files:
	gensuitemodule.py 
Log Message:
"yield" is also a keyword. Spotted by Neal Norwitz.


Index: gensuitemodule.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/scripts/gensuitemodule.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** gensuitemodule.py	2002/01/23 22:49:48	1.19
--- gensuitemodule.py	2002/01/24 12:36:51	1.20
***************
*** 821,825 ****
  	"break", "except", "import", "print", "class", "exec", "in", "raise", 
  	"continue", "finally", "is", "return", "def", "for", "lambda", "try", 
! 	"del", "from", "not", "while"]
  
  def identify(str):
--- 821,825 ----
  	"break", "except", "import", "print", "class", "exec", "in", "raise", 
  	"continue", "finally", "is", "return", "def", "for", "lambda", "try", 
! 	"del", "from", "not", "while", "yield"]
  
  def identify(str):