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 rhettinger
Recipients daniel.urban, mark.dickinson, rhettinger
Date 2010-09-18.23:15:38
SpamBayes Score 0.0022774148
Marked as misclassified No
Message-id <1284851740.92.0.464797955035.issue9896@psf.upfronthosting.co.za>
In-reply-to
Content
One other thought.  If there is a perceived need, I would rather an alternate approach that unifies a language a bit by letting range() expose its arguments as a slice and modify its input to accept a slice.

>>> range(0, 20, 2).slice
slice(0, 20, 20)
>>> range(_)
range(0, 20, 2)

>>> s = range(0, 20, 2).slice
>>> s.start
0
>>> s.stop
20
>>> s.step
2
History
Date User Action Args
2010-09-18 23:15:41rhettingersetrecipients: + rhettinger, mark.dickinson, daniel.urban
2010-09-18 23:15:40rhettingersetmessageid: <1284851740.92.0.464797955035.issue9896@psf.upfronthosting.co.za>
2010-09-18 23:15:38rhettingerlinkissue9896 messages
2010-09-18 23:15:38rhettingercreate