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 christian.heimes
Recipients belopolsky, christian.heimes, josm, rhettinger, robertwb, zanella
Date 2008-02-24.21:07:58
SpamBayes Score 0.082239226
Marked as misclassified No
Message-id <1203887280.52.0.336993888974.issue1533@psf.upfronthosting.co.za>
In-reply-to
Content
I'm -10 on the patch in issue1540617 ( +/-2**63).

Reason: It's a good thing that the range of "range" is limited since it
returns a list of integers. range(2**32) allocates (2**32)*16 bytes +
small overhead for ints plus the space for the list (probably
(2**32)*sizeof(ptr) which is 4 or 8 bytes). So far the memory for the
ints is *never* returned to the system. I'm working on the problem.
History
Date User Action Args
2008-02-24 21:08:00christian.heimessetspambayes_score: 0.0822392 -> 0.082239226
recipients: + christian.heimes, rhettinger, belopolsky, josm, robertwb, zanella
2008-02-24 21:08:00christian.heimessetspambayes_score: 0.0822392 -> 0.0822392
messageid: <1203887280.52.0.336993888974.issue1533@psf.upfronthosting.co.za>
2008-02-24 21:07:59christian.heimeslinkissue1533 messages
2008-02-24 21:07:59christian.heimescreate