[Python-checkins] r73184 - python/trunk/Lib/asyncore.py

josiah.carlson python-checkins at python.org
Wed Jun 3 21:51:53 CEST 2009


Author: josiah.carlson
Date: Wed Jun  3 21:51:52 2009
New Revision: 73184

Log:
Fix for line wrap ugly.


Modified:
   python/trunk/Lib/asyncore.py

Modified: python/trunk/Lib/asyncore.py
==============================================================================
--- python/trunk/Lib/asyncore.py	(original)
+++ python/trunk/Lib/asyncore.py	Wed Jun  3 21:51:52 2009
@@ -106,8 +106,7 @@
         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()


More information about the Python-checkins mailing list