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 mark.dickinson
Recipients eric.smith, kszawala, mark.dickinson
Date 2009-09-24.11:08:56
SpamBayes Score 7.3079065e-08
Marked as misclassified No
Message-id <1253790538.46.0.221652779675.issue6985@psf.upfronthosting.co.za>
In-reply-to
Content
I *think* range uses long internally, so 9999999999 should be okay on an
LP64 machine.  Except that of course the range() result must also fit in
memory: on a 64-bit machine range(9999999999) would need more than 300
Gb of memory.  (That's 32 bytes per entry:  24 bytes for each integer
and 8 bytes for the list pointer.)
History
Date User Action Args
2009-09-24 11:08:58mark.dickinsonsetrecipients: + mark.dickinson, eric.smith, kszawala
2009-09-24 11:08:58mark.dickinsonsetmessageid: <1253790538.46.0.221652779675.issue6985@psf.upfronthosting.co.za>
2009-09-24 11:08:57mark.dickinsonlinkissue6985 messages
2009-09-24 11:08:56mark.dickinsoncreate