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 vitaly
Recipients vitaly
Date 2012-09-11.15:56:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1347378968.67.0.51861041889.issue15918@psf.upfronthosting.co.za>
In-reply-to
Content
Also, attempting to read a 1MB chunk of data in a single os.read call forces os.read() to unnecessarily allocate a huge !MB buffer (even if only for a short lifetime).  Using something like 4KB read calls in a loop is more practical (and looping is necessary anyway).
History
Date User Action Args
2012-09-11 15:56:08vitalysetrecipients: + vitaly
2012-09-11 15:56:08vitalysetmessageid: <1347378968.67.0.51861041889.issue15918@psf.upfronthosting.co.za>
2012-09-11 15:56:08vitalylinkissue15918 messages
2012-09-11 15:56:08vitalycreate