commit | f6dab9542c6e6ce7ef4ae3156f0b03d2a6cc018b | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue Apr 28 21:48:35 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Tue Apr 28 21:48:35 2009 +0000 |
tree | fffb562b787d4d188e8ffaa22bbddd43ac923b85 | |
parent | 90c61a2e09c8c6aa8b1251b27fe38b55fa139274 [diff] |
Make the doctests in the docs pass, except for those in the turtle module.
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 @@ >>> gen = generate_ints(3) >>> gen - <generator object at ...> + <generator object generate_ints at ...> >>> gen.next() 0 >>> gen.next()