[issue2731] Documentation error on prime example in tutorial

2008-05-01 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Thanks, fixed in r62615. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ _

[issue2731] Documentation error on prime example in tutorial

2008-05-01 Thread Gerald Schlüter
New submission from Gerald Schlüter <[EMAIL PROTECTED]>: Hi there, on the page "controlflow.html" in chapter "break and continue Statements..." the line: print(n, 'equals', x, '*', n/x) should be changed to: print(n, 'equals', x, '*', n//x) or else the shown output should be modified. Thank y