[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 rep...@bugs.python.org
http://bugs.python.org/issue15032
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2013-12-10 Thread Gregory P. Smith

Changes by Gregory P. Smith g...@krypto.org:


--
resolution:  - out of date
stage:  - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15032
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 rep...@bugs.python.org
http://bugs.python.org/issue15032
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15032
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2012-06-07 Thread Gregory P. Smith

New submission from Gregory P. Smith g...@krypto.org:

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 does not suffer from the file descriptor limits 
problem of select().

A select.select() work-a-like should be possible to write that is implemented 
using poll.poll().

I am attaching my untested work in progress version of something like that as I 
don't have time to work on this further at the moment.  Someone else can pick 
it up if desired. (sorry about the code being in Google style rather than PEP-8)

--
files: poll_select-gps001.txt
messages: 162498
nosy: gregory.p.smith
priority: normal
severity: normal
status: open
title: Provide a select.select implemented using select.poll
type: enhancement
versions: Python 3.3
Added file: http://bugs.python.org/file25861/poll_select-gps001.txt

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15032
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 j...@jcea.es:


--
nosy: +jcea

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15032
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com