[Python-checkins] python/dist/src/Lib/test test_generators.py, 1.39, 1.40

edloper at users.sourceforge.net edloper at users.sourceforge.net
Mon Aug 9 04:03:33 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31213/dist/src/Lib/test

Modified Files:
	test_generators.py 
Log Message:
Fixed doctest error (wrong prompts)


Index: test_generators.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_generators.py,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** test_generators.py	12 Feb 2004 17:35:11 -0000	1.39
--- test_generators.py	9 Aug 2004 02:03:30 -0000	1.40
***************
*** 268,274 ****
  
      >>> # Show it off: create a tree.
!     ... t = tree("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
!     ... # Print the nodes of the tree in in-order.
!     ... for x in t:
      ...     print x,
      A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
--- 268,274 ----
  
      >>> # Show it off: create a tree.
!     >>> t = tree("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
!     >>> # Print the nodes of the tree in in-order.
!     >>> for x in t:
      ...     print x,
      A B C D E F G H I J K L M N O P Q R S T U V W X Y Z



More information about the Python-checkins mailing list