[issue29247] Document return value of epoll.poll

2017-12-11 Thread Berker Peksag
Change by Berker Peksag : -- versions: -Python 2.7, Python 3.5 ___ Python tracker ___

[issue29247] Document return value of epoll.poll

2017-12-11 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +4697 ___ Python tracker ___ ___

[issue29247] Document return value of epoll.poll

2017-12-08 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi Berker, Are you interested in making a pull request for this patch? Thanks! -- nosy: +csabella ___ Python tracker

[issue29247] Document return value of epoll.poll

2017-02-17 Thread Camilla Montonen
Changes by Camilla Montonen : -- nosy: +Winterflower ___ Python tracker ___ ___

[issue29247] Document return value of epoll.poll

2017-01-30 Thread Marco Buttu
Marco Buttu added the comment: The patch LGTM. There is just one typo, I think (see review). -- nosy: +marco.buttu ___ Python tracker ___

[issue29247] Document return value of epoll.poll

2017-01-30 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, Nathaniel. I agree that the documentation could be improved. Here is a patch. I also moved the constant table to epoll.register() documentation (it's already done in https://docs.python.org/3.7/library/select.html#polling-objects) It

[issue29247] Document return value of epoll.poll

2017-01-11 Thread Nathaniel Smith
New submission from Nathaniel Smith: The documentation for select.epoll.poll doesn't document the return value at all, which is somewhat important information :-) I think it's a list of (fd, eventmask) tuples? https://docs.python.org/3.7/library/select.html#select.epoll.poll --