Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 00a4286

Browse files
committed
Merged revisions 88726 via svnmerge from
svn+ssh://[email protected]/python/branches/py3k ........ r88726 | giampaolo.rodola | 2011-03-03 15:10:58 +0100 (gio, 03 mar 2011) | 1 line fix attribute error ........
1 parent 9c9105d commit 00a4286

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/asyncore.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454

5555
import os
5656
from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \
57-
ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, errorcode
57+
ENOTCONN, ESHUTDOWN, EINTR, EISCONN, EBADF, ECONNABORTED, EPIPE, EAGAIN, \
58+
errorcode
5859

5960
_DISCONNECTED = frozenset((ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE,
6061
EBADF))

0 commit comments

Comments
 (0)