[python-tulip] Support for select exception filedescriptor set or POLLPRI/POLLERR?

2014-09-25 Thread David Jander
Hi all, I have been using asyncore until now, and am very excited about the new asyncio library, but there is one thing I have always missed on asyncore (although it was halfway there) which does not seem to be possible with asyncio (please correct me if I'm wrong): On UNIX (Linux) the

Re: [python-tulip] Support for select exception filedescriptor set or POLLPRI/POLLERR?

2014-09-25 Thread Guido van Rossum
Hi David, Since selectors.py is not technically part of asyncio, it is best to do this as a patch to the CPython standard library. (If it was asyncio only I would recommend writing the patch for the upstream asyncio project, i.e. tulip). The recommended way to contribute to CPython is to create