[Python-Dev] epoll implementation

Guido van Rossum guido at python.org
Fri May 26 19:07:41 CEST 2006


I don't know what epoll is.

On a related note, perhaps the needforspeed folks should look into
supporting kqueue on systems where it's available? That's a really
fast BSD-originated API to replace select/poll. (It's fast due to the
way the API is designed.)

--Guido

On 5/26/06, Ross Cohen <rcohen at snurgle.org> wrote:
> I wrote an epoll implementation which can be used as a drop-in replacement
> for parts of the select module (assuming the program is using only poll).
> The code can currently be used by doing:
>
> import epoll as select
>
> It was released under the Python license on sourceforge:
> http://sourceforge.net/projects/pyepoll
>
> Is there any interest in incorporating this into the standard python
> distribution?
>
> Ross
> _______________________________________________
> Python-Dev mailing list
> Python-Dev at python.org
> http://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe: http://mail.python.org/mailman/options/python-dev/guido%40python.org
>


-- 
--Guido van Rossum (home page: http://www.python.org/~guido/)


More information about the Python-Dev mailing list