[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: -- hgrepos: +86 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___ ___ Python-bugs-list mailing list

[issue6397] Implementing Solaris poll in the select module

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

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: Removed file: http://bugs.python.org/file23524/d014fd90a487.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: Added file: http://bugs.python.org/file23525/6ea157b9d110.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: Removed file: http://bugs.python.org/file23525/6ea157b9d110.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: Added file: http://bugs.python.org/file23526/0ee4386d8f51.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es 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

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: -- keywords: +needs review stage: needs patch - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es added the comment: I have decided to segregate select.devpoll to a separate object, like select.epoll. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es added the comment: Solved points 1, 3 and 4. 2 will be solved with the documentation. 5 and 6 still pending. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: Removed file: http://bugs.python.org/file23526/0ee4386d8f51.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: Added file: http://bugs.python.org/file23531/6becc4e3eece.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: Removed file: http://bugs.python.org/file23531/6becc4e3eece.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: Added file: http://bugs.python.org/file23532/0b701eb5e9e3.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

[issue6397] Implementing Solaris poll in the select module

2011-10-26 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es added the comment: Documentation added. That solves 2 and 5. I still have to solve 6. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

[issue6397] Implementing Solaris poll in the select module

2011-10-20 Thread Jesús Cea Avión
Jesús Cea Avión j...@jcea.es 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

[issue6397] Implementing Solaris poll in the select module

2011-10-20 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: -- versions: +Python 3.3 -Python 2.7, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6397 ___

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

[issue6397] Implementing Solaris poll in the select module

2009-07-01 Thread Jean-Paul Calderone
Jean-Paul Calderone exar...@divmod.com 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