diff options
author | Georg Brandl <georg@python.org> | 2008-08-05 09:04:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-08-05 09:04:16 (GMT) |
commit | 11e18b0c2e0996632904a7dc7c953b2d6ae61b3a (patch) | |
tree | 4c53c1cda6b6b4256fb0255032fb1d1a382ba8a4 /Doc/tutorial/modules.rst | |
parent | 694f1f8c27f639e385644eaea7a1d187252f9fe1 (diff) | |
download | cpython-11e18b0c2e0996632904a7dc7c953b2d6ae61b3a.zip cpython-11e18b0c2e0996632904a7dc7c953b2d6ae61b3a.tar.gz cpython-11e18b0c2e0996632904a7dc7c953b2d6ae61b3a.tar.bz2 |
#3503: fix print statements in 3k doc.
Diffstat (limited to 'Doc/tutorial/modules.rst')
-rw-r--r-- | Doc/tutorial/modules.rst | 1 |
1 files changed, 1 insertions, 0 deletions
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 @@ called :file:`fibo.py` in the current directory with the following contents:: while b < n: print(b, end=' ') a, b = b, a+b + print() def fib2(n): # return Fibonacci series up to n result = [] |