[Python-checkins] r88727 - in python/branches/release32-maint: Lib/asyncore.py

giampaolo.rodola python-checkins at python.org
Thu Mar 3 15:11:46 CET 2011


Author: giampaolo.rodola
Date: Thu Mar  3 15:11:46 2011
New Revision: 88727

Log:
Merged revisions 88726 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r88726 | giampaolo.rodola | 2011-03-03 15:10:58 +0100 (gio, 03 mar 2011) | 1 line
  
  fix attribute error
........


Modified:
   python/branches/release32-maint/   (props changed)
   python/branches/release32-maint/Lib/asyncore.py

Modified: python/branches/release32-maint/Lib/asyncore.py
==============================================================================
--- python/branches/release32-maint/Lib/asyncore.py	(original)
+++ python/branches/release32-maint/Lib/asyncore.py	Thu Mar  3 15:11:46 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