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 ned.deily
Recipients ned.deily, tjhnson
Date 2014-10-01.22:39:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412203166.4.0.847857571486.issue22534@psf.upfronthosting.co.za>
In-reply-to
Content
What happens if you use xrange instead of range?

>>> range(1000000).__sizeof__()
8000056
>>> xrange(1000000).__sizeof__()
56
History
Date User Action Args
2014-10-01 22:39:26ned.deilysetrecipients: + ned.deily, tjhnson
2014-10-01 22:39:26ned.deilysetmessageid: <1412203166.4.0.847857571486.issue22534@psf.upfronthosting.co.za>
2014-10-01 22:39:26ned.deilylinkissue22534 messages
2014-10-01 22:39:26ned.deilycreate