]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix merge glitch.
authorGeorg Brandl <georg@python.org>
Mon, 7 Jan 2008 17:32:13 +0000 (17:32 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 7 Jan 2008 17:32:13 +0000 (17:32 +0000)
Doc/tutorial/introduction.rst

index 1189ce8cea2845c48e2de43d1fa2da5d40d1bd93..fa412e91497f56ba3c71340e8df79bd0797e779c 100644 (file)
@@ -548,8 +548,8 @@ series as follows::
    ... # the sum of two elements defines the next
    ... a, b = 0, 1
    >>> while b < 10:
-   ...       print b
-   ...       a, b = b, a+b
+   ...     print(b)
+   ...     a, b = b, a+b
    ... 
    1
    1