summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial/modules.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-08-05 09:04:16 (GMT)
committerGeorg Brandl <georg@python.org>2008-08-05 09:04:16 (GMT)
commit11e18b0c2e0996632904a7dc7c953b2d6ae61b3a (patch)
tree4c53c1cda6b6b4256fb0255032fb1d1a382ba8a4 /Doc/tutorial/modules.rst
parent694f1f8c27f639e385644eaea7a1d187252f9fe1 (diff)
downloadcpython-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.rst1
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 = []