[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Documentation added. That solves 2 and 5. I still have to solve 6. -- ___ Python tracker ___ ___ P

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : Added file: http://bugs.python.org/file23532/0b701eb5e9e3.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : Removed file: http://bugs.python.org/file23531/6becc4e3eece.diff ___ Python tracker ___ ___ Python-bugs-list maili

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : Added file: http://bugs.python.org/file23531/6becc4e3eece.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : Removed file: http://bugs.python.org/file23526/0ee4386d8f51.diff ___ Python tracker ___ ___ Python-bugs-list maili

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Solved points 1, 3 and 4. 2 will be solved with the documentation. 5 and 6 still pending. -- ___ Python tracker ___ _

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: I have decided to segregate "select.devpoll" to a separate object, like "select.epoll". -- ___ Python tracker ___

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- keywords: +needs review stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: First version of the patch. Review 0ee4386d8f51.diff http://bugs.python.org/file23526/0ee4386d8f51.diff Details: 1. Current code aliases "devpoll" in platforms with "/dev/poll" (Solaris and derivatives). Considering all the other points, I think that provid

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : Added file: http://bugs.python.org/file23526/0ee4386d8f51.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : Removed file: http://bugs.python.org/file23525/6ea157b9d110.diff ___ Python tracker ___ ___ Python-bugs-list maili

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : Added file: http://bugs.python.org/file23525/6ea157b9d110.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : Removed file: http://bugs.python.org/file23524/d014fd90a487.diff ___ Python tracker ___ ___ Python-bugs-list maili

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- keywords: +patch Added file: http://bugs.python.org/file23524/d014fd90a487.diff ___ Python tracker ___

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- hgrepos: +86 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-20 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- versions: +Python 3.3 -Python 2.7, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue6397] Implementing Solaris "poll" in the "select" module

2011-10-20 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: I want to move this forward. Apparently, "/dev/poll" could be actually used transparently in python "select.poll()" implementation. The semantics seems to be the same, so we could use the "poll" syscall or "/dev/poll" statically at compiling time, or dinami

[issue6397] Implementing Solaris "poll" in the "select" module

2009-07-01 Thread Jean-Paul Calderone
Jean-Paul Calderone added the comment: Solaris 10 introduced "The Event Completion Framework". I am not particularly familiar with Solaris, so I couldn't say whether it would be better to target this or the older /dev/poll. Some documentation suggests that "The Event Completion Framework" is s

[issue6397] Implementing Solaris "poll" in the "select" module

2009-07-01 Thread Jesús Cea Avión
New submission from Jesús Cea Avión : In Python 2.6 we added support for Linux "epoll" and *BSD "kqueue" in the select module. I think we should add support for Solaris "poll" interface too. What do you think?. I volunteer to do the work, if you agree this is a feature we want to have. I think