summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_generators.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-16 09:34:48 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-16 09:34:48 (GMT)
commit5ffad6646eacf305afaf2ba6b2a738c16257ee0e (patch)
tree0e639e8ffb5bf1d73cfac91c0a8a536d3aa4424c /Lib/test/test_generators.py
parenta8eaf8faf30bd5c4ce84ef44376b862237a606c3 (diff)
downloadcpython-5ffad6646eacf305afaf2ba6b2a738c16257ee0e.zip
cpython-5ffad6646eacf305afaf2ba6b2a738c16257ee0e.tar.gz
cpython-5ffad6646eacf305afaf2ba6b2a738c16257ee0e.tar.bz2
Make generator repr consistent with function and code object repr.
Diffstat (limited to 'Lib/test/test_generators.py')
-rw-r--r--Lib/test/test_generators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py
index 7be0a90..3702abc 100644
--- a/Lib/test/test_generators.py
+++ b/Lib/test/test_generators.py
@@ -927,7 +927,7 @@ Test the __name__ attribute and the repr()
>>> g.__name__
'f'
>>> repr(g) # doctest: +ELLIPSIS
-'<f generator object at ...>'
+'<generator object f at ...>'
"""
# conjoin is a simple backtracking generator, named in honor of Icon's