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 nedbat
Recipients Devin Jeanpierre, benjamin.peterson, docs@python, nedbat, rhettinger
Date 2015-04-22.00:00:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429660828.44.0.634510288014.issue22785@psf.upfronthosting.co.za>
In-reply-to
Content
(By the time I got to the source, the word "virtual" had been removed...)

Attached is a patch to make the help read:

 |  range(stop) -> range object
 |  range(start, stop[, step]) -> range object
 |
 |  Return an object that produces a sequence of integers from start (inclusive)
 |  to stop (exclusive) by step.  range(i, j) produces i, i+1, i+2, ..., j-1.
 |  start defaults to 0, and stop is omitted!  range(4) produces 0, 1, 2, 3.
 |  These are exactly the valid indices for a list of 4 elements.
 |  When step is given, it specifies the increment (or decrement).
History
Date User Action Args
2015-04-22 00:00:28nedbatsetrecipients: + nedbat, rhettinger, benjamin.peterson, Devin Jeanpierre, docs@python
2015-04-22 00:00:28nedbatsetmessageid: <1429660828.44.0.634510288014.issue22785@psf.upfronthosting.co.za>
2015-04-22 00:00:28nedbatlinkissue22785 messages
2015-04-22 00:00:28nedbatcreate