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 schmir
Recipients CurtHagenlocher, draghuram, schmir
Date 2008-04-14.21:49:44
SpamBayes Score 0.009882483
Marked as misclassified No
Message-id <1208209784.89.0.845394793073.issue2632@psf.upfronthosting.co.za>
In-reply-to
Content
One more time: the change is wrong. It should try to recv the maximum
not the minimum of size, buffer_size. If you using a buffering of 16
bytes it will otherwise call recv 256 times when you want to read 1024
bytes. this is wrong.
However there should be an upper limit, it doesn't make sense to read
10MB from socket in one recv call (imap bug).
History
Date User Action Args
2008-04-14 21:49:45schmirsetspambayes_score: 0.00988248 -> 0.009882483
recipients: + schmir, draghuram, CurtHagenlocher
2008-04-14 21:49:44schmirsetspambayes_score: 0.00988248 -> 0.00988248
messageid: <1208209784.89.0.845394793073.issue2632@psf.upfronthosting.co.za>
2008-04-14 21:49:44schmirlinkissue2632 messages
2008-04-14 21:49:44schmircreate