summaryrefslogtreecommitdiff
path: root/Lib/test/test_genexps.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-16 09:34:48 +0000
committerGeorg Brandl <georg@python.org>2008-05-16 09:34:48 +0000
commit5ffad6646eacf305afaf2ba6b2a738c16257ee0e (patch)
tree0e639e8ffb5bf1d73cfac91c0a8a536d3aa4424c /Lib/test/test_genexps.py
parenta8eaf8faf30bd5c4ce84ef44376b862237a606c3 (diff)
downloadcpython-git-5ffad6646eacf305afaf2ba6b2a738c16257ee0e.tar.gz
Make generator repr consistent with function and code object repr.
Diffstat (limited to 'Lib/test/test_genexps.py')
-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 ab9f85d7a4..a86f12f03e 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': <<genexpr> generator object at ...>}
+ {'a': <generator object <genexpr> at ...>}
Verify early binding for the outermost for-expression