Maxim Veksler <[EMAIL PROTECTED]> wrote: > ValueError: filedescriptor out of range in select() > """ > > Should I be using a different version of select or something? Or
select typically supports 1024 FDs at most (a design limit of the underlying operating system). You may want to try poll instead (epoll might be better but I doubt Python supports it yet). Alex -- http://mail.python.org/mailman/listinfo/python-list