summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-05-15 20:31:42 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-05-15 20:31:42 (GMT)
commitf7f439b6f1a0bf33a42cb79ca290f7dd3b48dff8 (patch)
treeada98be588e612e3d1017edde3b405dd8b7791ed /Lib
parent3b46fcfb389af7e62e1e5ffdfde2880d6d99b2c6 (diff)
downloadcpython-f7f439b6f1a0bf33a42cb79ca290f7dd3b48dff8.zip
cpython-f7f439b6f1a0bf33a42cb79ca290f7dd3b48dff8.tar.gz
cpython-f7f439b6f1a0bf33a42cb79ca290f7dd3b48dff8.tar.bz2
Fixed typo in a doctest of test_genexps.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_genexps.py2
1 files changed, 1 insertions, 1 deletions
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
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