[Python-checkins] CVS: python/dist/src/Lib/test test_generators.py,1.19,1.20
Tim Peters
tim_one@users.sourceforge.net
2001年7月12日 15:43:43 -0700
Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv21407/python/dist/src/Lib/test
Modified Files:
test_generators.py
Log Message:
Repair flawed example.
Index: test_generators.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_generators.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** test_generators.py 2001年07月12日 22:36:02 1.19
--- test_generators.py 2001年07月12日 22:43:41 1.20
***************
*** 48,52 ****
>>> def f():
... yield 1
! ... return
... yield 2 # never reached
...
--- 48,52 ----
>>> def f():
... yield 1
! ... raise StopIteration
... yield 2 # never reached
...