Fix merge glitch.

This commit is contained in:
Georg Brandl 2008-01-07 17:32:13 +00:00
parent 043d6f67c7
commit 22ec03c286
1 changed files with 2 additions and 2 deletions

View File

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