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 kristjan.jonsson
Recipients SG, asvetlov, berker.peksag, iMath, kristjan.jonsson, pje, r.david.murray, steve.dower, tim.golden
Date 2016-08-09.14:03:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470751400.57.0.325641024344.issue27682@psf.upfronthosting.co.za>
In-reply-to
Content
As already stated, this error bubbles up from the TCP layer.  It means that the tcp stack, for example, gave up resending a tcp frame and timed out, determining that the recipient was no longer listening.
You cannot create this error yourself.  If you, for example, call s.shutdown(SHUT_WR), you get a WSAESHUTDOWN error.  If the connection is closed (via s.close()) you get a EBADF error.
Now, the interaction with the client may cause the client to misbehave, but this sort of error is usually either due to the network (other host becomes unreachable) or misconfiguration of the local host's tcp stack.
History
Date User Action Args
2016-08-09 14:03:20kristjan.jonssonsetrecipients: + kristjan.jonsson, pje, tim.golden, r.david.murray, asvetlov, berker.peksag, steve.dower, iMath, SG
2016-08-09 14:03:20kristjan.jonssonsetmessageid: <1470751400.57.0.325641024344.issue27682@psf.upfronthosting.co.za>
2016-08-09 14:03:20kristjan.jonssonlinkissue27682 messages
2016-08-09 14:03:20kristjan.jonssoncreate