summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-04-28 21:48:35 (GMT)
committerGeorg Brandl <georg@python.org>2009-04-28 21:48:35 (GMT)
commitf6dab9542c6e6ce7ef4ae3156f0b03d2a6cc018b (patch)
treefffb562b787d4d188e8ffaa22bbddd43ac923b85 /Doc/howto
parent90c61a2e09c8c6aa8b1251b27fe38b55fa139274 (diff)
downloadcpython-f6dab9542c6e6ce7ef4ae3156f0b03d2a6cc018b.zip
cpython-f6dab9542c6e6ce7ef4ae3156f0b03d2a6cc018b.tar.gz
cpython-f6dab9542c6e6ce7ef4ae3156f0b03d2a6cc018b.tar.bz2
Make the doctests in the docs pass, except for those in the turtle module.
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/functional.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst
index d589f36..4f606d7 100644
--- a/Doc/howto/functional.rst
+++ b/Doc/howto/functional.rst
@@ -472,7 +472,7 @@ Here's a sample usage of the ``generate_ints()`` generator:
>>> gen = generate_ints(3)
>>> gen
- <generator object at ...>
+ <generator object generate_ints at ...>
>>> gen.next()
0
>>> gen.next()