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 josiahcarlson
Recipients ddvoinikov, giampaolo.rodola, janssen, josiah.carlson, josiahcarlson
Date 2008-10-21.22:30:57
SpamBayes Score 3.317541e-05
Marked as misclassified No
Message-id <1224628258.65.0.40240486015.issue3890@psf.upfronthosting.co.za>
In-reply-to
Content
I agree with Giampaolo.  In the case of non-blocking sockets, if reading 
from the ssl stream fails because there is no data on the socket, then 
sitting in a while loop is just going to busy-wait until data is 
discovered.

Never mind that the reference to "sendall" should be replaced by recv.

Whether to 'continue' or 'raise' should be determined by whether the 
socket is blocking.
History
Date User Action Args
2008-10-21 22:30:58josiahcarlsonsetrecipients: + josiahcarlson, janssen, giampaolo.rodola, josiah.carlson, ddvoinikov
2008-10-21 22:30:58josiahcarlsonsetmessageid: <1224628258.65.0.40240486015.issue3890@psf.upfronthosting.co.za>
2008-10-21 22:30:58josiahcarlsonlinkissue3890 messages
2008-10-21 22:30:57josiahcarlsoncreate