[Python-checkins] CVS: python/dist/src/Lib/test test_generators.py,1.30,1.31

Tim Peters tim_one@users.sourceforge.net
Sat, 09 Mar 2002 23:59:15 -0800


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

Modified Files:
	test_generators.py 
Log Message:
SF patch 499062: Minor typo in test_generators.py.
There's no actual patch there.  It's an objection that Guido's example
doesn't actually generator "leaves", so change the comment that says
it does.


Index: test_generators.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_generators.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** test_generators.py	6 Dec 2001 06:23:25 -0000	1.30
--- test_generators.py	10 Mar 2002 07:59:13 -0000	1.31
***************
*** 260,264 ****
      >>> t = tree("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
  
!     >>> # A recursive generator that generates Tree leaves in in-order.
      >>> def inorder(t):
      ...     if t:
--- 260,264 ----
      >>> t = tree("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
  
!     >>> # A recursive generator that generates Tree labels in in-order.
      >>> def inorder(t):
      ...     if t: