[Python-3000-checkins] r59828 - python/branches/py3k/Doc/tutorial/introduction.rst

georg.brandl python-3000-checkins at python.org
Mon Jan 7 18:32:13 CET 2008


Author: georg.brandl
Date: Mon Jan  7 18:32:13 2008
New Revision: 59828

Modified:
   python/branches/py3k/Doc/tutorial/introduction.rst
Log:
Fix merge glitch.


Modified: python/branches/py3k/Doc/tutorial/introduction.rst
==============================================================================
--- python/branches/py3k/Doc/tutorial/introduction.rst	(original)
+++ python/branches/py3k/Doc/tutorial/introduction.rst	Mon Jan  7 18:32:13 2008
@@ -548,8 +548,8 @@
    ... # 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


More information about the Python-3000-checkins mailing list