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 akira
Recipients akira, asvetlov, christian.heimes, giampaolo.rodola, gvanrossum, josh.r, josiah.carlson, neologix, pitrou, rosslagerwall, yselivanov
Date 2014-04-25.00:59:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398387550.76.0.34925915882.issue17552@psf.upfronthosting.co.za>
In-reply-to
Content
count and blocksize are completely different.

*count* specifies how many bytes at most socket.sendfile should sent overall. It may change the result i.e., it may not be necessary that the file is read until EOF.

It has the same meaning as *nbytes* parameter for os.sendfile or *nbytes* in msg217121

*blocksize* doesn't change how many bytes is read in the end by socket.sendfile. At most it may affect time performance. It is *nbytes_per_send* in msg217121
History
Date User Action Args
2014-04-25 00:59:10akirasetrecipients: + akira, gvanrossum, pitrou, giampaolo.rodola, christian.heimes, josiah.carlson, asvetlov, neologix, rosslagerwall, yselivanov, josh.r
2014-04-25 00:59:10akirasetmessageid: <1398387550.76.0.34925915882.issue17552@psf.upfronthosting.co.za>
2014-04-25 00:59:10akiralinkissue17552 messages
2014-04-25 00:59:10akiracreate