>>>>> "Tor Erik Sønvisen" <[EMAIL PROTECTED]> (TES) wrote:

>TES> When using select, what exactly will trigger an output-event? I have
>TES> a socket registered in the output-list of the select but an
>TES> output-event is never generated for that socket. I know the socket is
>TES> ready to send data, so how can I make select return with an
>TES> output-event?

It is better to talk about status than event. The select should return the
socket in the ready set for write when a write on that socket can be done
without blocking. So if it doen't return it then something is wrong. This
is on Unix systems, by the way. On Windows things might be different.
-- 
Piet van Oostrum <[EMAIL PROTECTED]>
URL: http://www.cs.uu.nl/~piet [PGP 8DAE142BE17999C4]
Private email: [EMAIL PROTECTED]
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to