Christian Heimes added the comment:

EAGAIN          Resource temporarily unavailable (may be the same value as 
EWOULDBLOCK) (POSIX.1)

Can you please check of EAGAIN and EWOULDBLOCK are the same value on your Linux 
box? They are the same on my box:

>>> import errno
>>> errno.EAGAIN, errno.EWOULDBLOCK
(11, 11)

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19919>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to