diff options
author | Georg Brandl <georg@python.org> | 2009-04-28 21:48:35 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-28 21:48:35 (GMT) |
commit | f6dab9542c6e6ce7ef4ae3156f0b03d2a6cc018b (patch) | |
tree | fffb562b787d4d188e8ffaa22bbddd43ac923b85 /Doc/howto | |
parent | 90c61a2e09c8c6aa8b1251b27fe38b55fa139274 (diff) | |
download | cpython-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.rst | 2 |
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() |