From: Georg Brandl Date: Mon, 7 Jan 2008 17:32:13 +0000 (+0000) Subject: Fix merge glitch. X-Git-Tag: v3.0a3~220 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22ec03c286094298227b2068fa02bcafedf76860;p=thirdparty%2FPython%2Fcpython.git Fix merge glitch. --- diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 1189ce8cea28..fa412e91497f 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -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