[Python-checkins] r88726 - python/branches/py3k/Lib/asyncore.py

giampaolo.rodola python-checkins at python.org
Thu Mar 3 15:10:58 CET 2011


Author: giampaolo.rodola
Date: Thu Mar  3 15:10:58 2011
New Revision: 88726

Log:
fix attribute error

Modified:
   python/branches/py3k/Lib/asyncore.py

Modified: python/branches/py3k/Lib/asyncore.py
==============================================================================
--- python/branches/py3k/Lib/asyncore.py	(original)
+++ python/branches/py3k/Lib/asyncore.py	Thu Mar  3 15:10:58 2011
@@ -54,7 +54,8 @@
 
 import os
 from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \
-     ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, errorcode
+     ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, EAGAIN, \
+     errorcode
 
 _DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE,
                            EBADF))


More information about the Python-checkins mailing list