summaryrefslogtreecommitdiffstats
path: root/Lib/asyncore.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/asyncore.py')
-rw-r--r--Lib/asyncore.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/asyncore.py b/Lib/asyncore.py
index 3672db9..6d6ca33 100644
--- a/Lib/asyncore.py
+++ b/Lib/asyncore.py
@@ -106,8 +106,7 @@ def readwrite(obj, flags):
if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL):
obj.handle_close()
except socket.error, e:
- if e.args[0] not in (EBADF, ECONNRESET, ENOTCONN, ESHUTDOWN,
-ECONNABORTED):
+ if e.args[0] not in (EBADF, ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED):
obj.handle_error()
else:
obj.handle_close()