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 aimacintyre, loewis, mark.dickinson, robrien
Date 2008-09-30.13:56:34
SpamBayes Score 4.699104e-06
Marked as misclassified No
Message-id <1222782995.71.0.0706487889829.issue3862@psf.upfronthosting.co.za>
In-reply-to
Content
The 2**16 in the error message is wrong.  Maybe the error message should
be something like:

"Attempt to create array of size larger than maxsize failed to raise
MemoryError."

A bit verbose, but more accurate.

There's another error in that patch, too.  The line:

b * maxsize//3 + 1

should be

b * (maxsize//3 + 1)

(I was mistakenly reading the '*' as '*=', as in the first test.)
History
Date User Action Args
2008-09-30 13:56:35mark.dickinsonsetrecipients: + mark.dickinson, loewis, aimacintyre, robrien
2008-09-30 13:56:35mark.dickinsonsetmessageid: <1222782995.71.0.0706487889829.issue3862@psf.upfronthosting.co.za>
2008-09-30 13:56:34mark.dickinsonlinkissue3862 messages
2008-09-30 13:56:34mark.dickinsoncreate