[Python-checkins] CVS: python/dist/src/Lib/test pystone.py,1.6,1.7

Guido van Rossum gvanrossum@users.sourceforge.net
Sun, 15 Jul 2001 14:08:31 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv12021/Lib/test

Modified Files:
	pystone.py 
Log Message:
Preliminary support for "from __future__ import generators" to enable
the yield statement.  I figure we have to have this in before I can
release 2.2a1 on Wednesday.

Note: test_generators is currently broken, I'm counting on Tim to fix
this.


Index: pystone.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/pystone.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pystone.py	2000/10/23 17:22:07	1.6
--- pystone.py	2001/07/15 21:08:29	1.7
***************
*** 33,37 ****
  """
  
! LOOPS = 10000
  
  from time import clock
--- 33,37 ----
  """
  
! LOOPS = 100000
  
  from time import clock