[docs] [issue15831] comma after leading optional argument is after bracket in docs

Ezio Melotti report at bugs.python.org
Fri Aug 31 18:15:35 CEST 2012


Ezio Melotti added the comment:

I thought that was just a matter of finding the wrong commas and fixing them, but if they are correct in the source, then the situation might be a bit more complicated.

Does this happen only with "unusual" signatures like range([start], stop [, step])?

FWIW this could be replaced with:
range(stop)
range(start, stop [, step])

----------

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


More information about the docs mailing list