commit | f7f439b6f1a0bf33a42cb79ca290f7dd3b48dff8 | [log] [tgz] |
---|---|---|
author | Alexandre Vassalotti <alexandre@peadrop.com> | Thu May 15 20:31:42 2008 +0000 |
committer | Alexandre Vassalotti <alexandre@peadrop.com> | Thu May 15 20:31:42 2008 +0000 |
tree | ada98be588e612e3d1017edde3b405dd8b7791ed | |
parent | 3b46fcfb389af7e62e1e5ffdfde2880d6d99b2c6 [diff] [blame] |
Fixed typo in a doctest of test_genexps.
diff --git a/Lib/test/test_genexps.py b/Lib/test/test_genexps.py index 0317955..ab9f85d 100644 --- a/Lib/test/test_genexps.py +++ b/Lib/test/test_genexps.py
@@ -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