[issue15032] Provide a select.select implemented using select.poll

2013-12-10 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- resolution: -> out of date stage: -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue15032] Provide a select.select implemented using select.poll

2013-12-10 Thread Éric Araujo
Éric Araujo added the comment: This may be obsoleted by the new selectors module. -- nosy: +eric.araujo, neologix ___ Python tracker ___ _

[issue15032] Provide a select.select implemented using select.poll

2012-10-17 Thread Gregory P. Smith
Gregory P. Smith added the comment: indeed, i don't know that there is any point to this idea. i'm all for just getting rid of all uses of select in the stdlib and making them poll only in 3.4 unless someone can point to a modern system that does not support poll. --

[issue15032] Provide a select.select implemented using select.poll

2012-10-17 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: It's not clear to me how you intend to provide this exactly. To me it looks like a good candidate for a recipe, otherwise I don't see it as a good fit for the stdlib. -- nosy: +giampaolo.rodola ___ Python tracker

[issue15032] Provide a select.select implemented using select.poll

2012-06-07 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue15032] Provide a select.select implemented using select.poll

2012-06-07 Thread Gregory P. Smith
New submission from Gregory P. Smith : Many random bits of the standard library were originally written using select.select. This is an ancient API that is available everywhere, but these days you'd be hard pressed to find _any_ system that does not implement the superior poll() API which doe