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 loewis
Recipients Kevin Ar18, gregory.p.smith, loewis
Date 2007-08-30.15:33:28
SpamBayes Score 0.5412313
Marked as misclassified No
Message-id <1188488009.19.0.937740530618.issue1060@psf.upfronthosting.co.za>
In-reply-to
Content
I now see the problem. What you want to do cannot possibly work.

You are trying to create a string object that is larger than 2GB; this
is not possible on a 32-bit system (which I assume you are using). No
matter how you modify the read() function, it would always return a
string that is so large it cannot fit into the address space.

This will be fixed in Python 2.6, which has a separate .open method,
allowing to read the individual files in the zipfile as streams.
History
Date User Action Args
2007-08-30 15:33:29loewissetspambayes_score: 0.541231 -> 0.5412313
recipients: + loewis, gregory.p.smith, Kevin Ar18
2007-08-30 15:33:29loewissetspambayes_score: 0.541231 -> 0.541231
messageid: <1188488009.19.0.937740530618.issue1060@psf.upfronthosting.co.za>
2007-08-30 15:33:29loewislinkissue1060 messages
2007-08-30 15:33:28loewiscreate