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 gregory.p.smith
Recipients Kevin Ar18, gregory.p.smith, loewis
Date 2008-01-19.23:39:55
SpamBayes Score 0.10104886
Marked as misclassified No
Message-id <1200785996.99.0.160797525711.issue1060@psf.upfronthosting.co.za>
In-reply-to
Content
The issue here was that reading more data than will fit into an in
memory string fails.  While the zipfile module could detect this in some
cases, it is not really worth such a runtime check.  This is just a fact
of python and of sane programming, if you're reading data from a file
like object you should never use unbounded reads without having checked
your input for sanity first.
History
Date User Action Args
2008-01-19 23:39:57gregory.p.smithsetspambayes_score: 0.101049 -> 0.10104886
recipients: + gregory.p.smith, loewis, Kevin Ar18
2008-01-19 23:39:57gregory.p.smithsetspambayes_score: 0.101049 -> 0.101049
messageid: <1200785996.99.0.160797525711.issue1060@psf.upfronthosting.co.za>
2008-01-19 23:39:56gregory.p.smithlinkissue1060 messages
2008-01-19 23:39:55gregory.p.smithcreate