Author josiahcarlson
Recipients
Date 2007-06-13.21:13:10
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Re-read the patch.  In particular...

@@ -333,9 +349,11 @@
         except socket.error, why:
             if why[0] == EWOULDBLOCK:
                 return 0
+            elif why[0] in (ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED):
+                self.handle_close()
+                return 0

That is added handling for all four potential errors in send.
History
Date User Action Args
2007-08-23 15:58:45adminlinkissue1736101 messages
2007-08-23 15:58:45admincreate