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
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to