[Python-checkins] r63327 - python/trunk/Lib/test/test_genexps.py

alexandre.vassalotti python-checkins at python.org
Thu May 15 22:31:43 CEST 2008


Author: alexandre.vassalotti
Date: Thu May 15 22:31:42 2008
New Revision: 63327

Log:
Fixed typo in a doctest of test_genexps.


Modified:
   python/trunk/Lib/test/test_genexps.py

Modified: python/trunk/Lib/test/test_genexps.py
==============================================================================
--- python/trunk/Lib/test/test_genexps.py	(original)
+++ python/trunk/Lib/test/test_genexps.py	Thu May 15 22:31:42 2008
@@ -92,7 +92,7 @@
 Verify that parenthesis are required when used as a keyword argument value
 
     >>> dict(a = (i for i in xrange(10))) #doctest: +ELLIPSIS
-    {'a': <<genexp> generator object at ...>}
+    {'a': <<genexpr> generator object at ...>}
 
 Verify early binding for the outermost for-expression
 


More information about the Python-checkins mailing list