n00m wrote:
 > Btw, why we need send() if there is sendall()?

Mostly because sendall() can block, even if you do all the
select() and setblocking() magic. That's no problem in the
threaded architecture we're using, but a deal-breaker for a
single-threaded server.

-- 
--Bryan
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to