[issue19067] Built-in range docstrings are not PEP-8 compatible

2013-10-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5135a431f7b3 by Ezio Melotti in branch '3.3': #19067: use imperative mood in range object docstrings. Patch by Marco Buttu. http://hg.python.org/cpython/rev/5135a431f7b3 New changeset b2c752eff474 by Ezio Melotti in branch 'default': #19067: merge

[issue19067] Built-in range docstrings are not PEP-8 compatible

2013-10-05 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- assignee: docs@python - ezio.melotti nosy: +ezio.melotti resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue19067] Built-in range docstrings are not PEP-8 compatible

2013-09-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: PEP8 just says PEP 257 describes good docstring conventions. PEP 257 is what says '''It [the one line docstring] prescribes the function or method's effect as a command (Do this, Return that), not as a description; e.g. don't write Returns the pathname

[issue19067] Built-in range docstrings are not PEP-8 compatible

2013-09-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I asked on py-dev whether to do this. #19068 and #19069 are similar issues for complex and float docstrings. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19067

[issue19067] Built-in range docstrings are not PEP-8 compatible

2013-09-27 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe tshep...@gmail.com: -- nosy: +tshepang ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19067 ___ ___

[issue19067] Built-in range docstrings are not PEP-8 compatible

2013-09-27 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- priority: normal - low ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19067 ___ ___

[issue19067] Built-in range docstrings are not PEP-8 compatible

2013-09-22 Thread Marco Buttu
New submission from Marco Buttu: The range documentation is not PEP-8 compatible: range.__doc__.splitlines()[-1] 'Returns a virtual sequence of numbers from start to stop by step.' range.__reversed__.__doc__ 'Returns a reverse iterator.' range.index.__doc__.splitlines()[-1] 'Raises