[issue19069] Built-in float 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: duplicate -> fixed stage: -> committed/rejected versions: +Python 2.7, Python 3.4 -Python 3.2 ___ Python tracker

[issue19069] Built-in float docstrings are not PEP-8 compatible

2013-10-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset ca8e75190402 by Ezio Melotti in branch '2.7': #19069: use imperative mood in float object docstrings. Patch by Marco Buttu. http://hg.python.org/cpython/rev/ca8e75190402 New changeset 563074ace473 by Ezio Melotti in branch '3.3': #19069: use impera

[issue19069] Built-in float docstrings are not PEP-8 compatible

2013-09-28 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue19069] Built-in float docstrings are not PEP-8 compatible

2013-09-27 Thread Raymond Hettinger
Raymond Hettinger added the comment: Please don't flood the tracker with these individual reports. Present a single consolidated patch in Issue 19069. -- nosy: +rhettinger resolution: -> duplicate status: open -> closed ___ Python tracker

[issue19069] Built-in float docstrings are not PEP-8 compatible

2013-09-27 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue19069] Built-in float docstrings are not PEP-8 compatible

2013-09-22 Thread Marco Buttu
New submission from Marco Buttu: As reported in the title: >>> float.as_integer_ratio.__doc__.splitlines()[2] 'Returns a pair of integers, whose ratio is exactly equal to the original' >>> float.as_integer_ratio.__doc__.splitlines()[4] 'Raises OverflowError on infinities and a ValueError on NaN