[New-bugs-announce] [issue4648] Fix n//x to n/x in the Docs

Retro report at bugs.python.org
Sat Dec 13 00:34:07 CET 2008


New submission from Retro <vinetouu at gmail.com>:

Please look at the example code in the following Python 3.0
documentation/tutorial:

http://docs.python.org/3.0/tutorial/controlflow.html#break-and-continue-statements-and-else-clauses-on-loops


The line 4 has a little fix to be made:

from
...             print(n, 'equals', x, '*', n//x)
to
...             print(n, 'equals', x, '*', n/x)


You probably noticed that n//x was proposed to be fixed to n/x. Please
note that this is Python 3.0 code. It's a small fix so I hope you won't
mind to fix this.

----------
assignee: georg.brandl
components: Documentation
messages: 77694
nosy: Retro, georg.brandl
severity: normal
status: open
title: Fix n//x to n/x in the Docs
versions: Python 3.0, Python 3.1

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue4648>
_______________________________________


More information about the New-bugs-announce mailing list