This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Documentation error on prime example in tutorial
Type: Stage:
Components: Documentation Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, gls
Priority: normal Keywords:

Created on 2008-05-01 16:08 by gls, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg66034 - (view) Author: Gerald Schlüter (gls) Date: 2008-05-01 16:08
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 you,
Gerry
msg66037 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-05-01 18:06
Thanks, fixed in r62615.
History
Date User Action Args
2022-04-11 14:56:33adminsetgithub: 46983
2008-05-01 18:07:05georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg66037
2008-05-01 16:08:49glscreate