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.

Author marco.buttu
Recipients docs@python, marco.buttu
Date 2013-09-22.07:01:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1379833275.25.0.770459256521.issue19067@psf.upfronthosting.co.za>
In-reply-to
Content
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 ValueError if the value is not present.'

They should have been 'Return...' and 'Raise...'. Patch is attached
History
Date User Action Args
2013-09-22 07:01:15marco.buttusetrecipients: + marco.buttu, docs@python
2013-09-22 07:01:15marco.buttusetmessageid: <1379833275.25.0.770459256521.issue19067@psf.upfronthosting.co.za>
2013-09-22 07:01:15marco.buttulinkissue19067 messages
2013-09-22 07:01:14marco.buttucreate