ulimit on open sockets ?

Alex Martelli aleax at mac.com
Tue Apr 10 01:02:23 EDT 2007


Maxim Veksler <hq4ever at gmail.com> 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



More information about the Python-list mailing list