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 diekmann
Recipients diekmann, pitrou
Date 2010-12-08.12:23:55
SpamBayes Score 0.0003530256
Marked as misclassified No
Message-id <1291811040.62.0.133542021624.issue10644@psf.upfronthosting.co.za>
In-reply-to
Content
> How could it work?
Before sending the actual data to the socket, send an empty packet to the socket and check if it is still alive. This may be a large performance issue on a lower level (if the connection is TCP, we want to wait for the ACK), but on a higher level, when using sendall() with larger arguments, it may be very convenient and the performance overhead may be barely noticeable.
I guess when using high-level functions like sendall(), the bare funcionality is preferred over this performance issue.
History
Date User Action Args
2010-12-08 12:24:00diekmannsetrecipients: + diekmann, pitrou
2010-12-08 12:24:00diekmannsetmessageid: <1291811040.62.0.133542021624.issue10644@psf.upfronthosting.co.za>
2010-12-08 12:23:55diekmannlinkissue10644 messages
2010-12-08 12:23:55diekmanncreate