[issue2710] error: (10035, 'The socket operation could not complete without blocking')

Gabriel Genellina report at bugs.python.org
Wed Aug 5 03:47:38 CEST 2009


Gabriel Genellina <gagsl-py2 at yahoo.com.ar> added the comment:

AFAIK, WSAEWOULDBLOCK means that the socket is in nonblocking mode and 
the attempted operation could wait indefinitely to complete. But I 
don't understand how that could happen since a previous select() 
confirmed the socket is writeable...
Probably the whole code block could be replaced by a single 
self.sock.sendall(s) call.

----------
nosy: +gagenellina

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue2710>
_______________________________________


More information about the Python-bugs-list mailing list