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 maubp
Recipients maubp
Date 2013-10-05.18:54:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380999281.69.0.809167641275.issue19174@psf.upfronthosting.co.za>
In-reply-to
Content
Much like how iterator style filter, map and zip are available via future_builtins (issue #2171), it would be natural to expect range to be there too, e.g.

>>> from future_builtins import range
>>> range(5)
range(0, 5)

The 2to3 fixers would need to be modified in the same way the map/filter/zip fixers were to be aware when a Python3 style range was in use via this import.
History
Date User Action Args
2013-10-05 18:54:41maubpsetrecipients: + maubp
2013-10-05 18:54:41maubpsetmessageid: <1380999281.69.0.809167641275.issue19174@psf.upfronthosting.co.za>
2013-10-05 18:54:41maubplinkissue19174 messages
2013-10-05 18:54:41maubpcreate