commit | 11e18b0c2e0996632904a7dc7c953b2d6ae61b3a | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue Aug 05 09:04:16 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Tue Aug 05 09:04:16 2008 +0000 |
tree | 4c53c1cda6b6b4256fb0255032fb1d1a382ba8a4 | |
parent | 694f1f8c27f639e385644eaea7a1d187252f9fe1 [diff] [blame] |
#3503: fix print statements in 3k doc.
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index 68e0258..1b3cbc5 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst
@@ -32,6 +32,7 @@ while b < n: print(b, end=' ') a, b = b, a+b + print() def fib2(n): # return Fibonacci series up to n result = []