[issue27018] Incorrect documentation of select module

2016-05-14 Thread Senthil Kumaran
Senthil Kumaran added the comment: Thanks for the report, Salvo. And thank you for the patch, SilentGhost. This is fixed in the active versions of python. -- nosy: +orsenthil resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue27018] Incorrect documentation of select module

2016-05-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 37c95a4b979a by Senthil Kumaran in branch '3.5': issue27018 - Fix the documentation of select.epoll.register method. https://hg.python.org/cpython/rev/37c95a4b979a New changeset eca161a355d4 by Senthil Kumaran in branch 'default': merge from 3.5

[issue27018] Incorrect documentation of select module

2016-05-14 Thread SilentGhost
SilentGhost added the comment: Here is the patch. -- keywords: +patch nosy: +SilentGhost stage: -> patch review type: -> behavior versions: +Python 3.6 Added file: http://bugs.python.org/file42846/issue27018.diff ___ Python tracker

[issue27018] Incorrect documentation of select module

2016-05-14 Thread Salvo “LtWorf” Tomaselli
New submission from Salvo “LtWorf” Tomaselli: import select help(select.epoll) It mentions that the default mask is EPOLL_IN | EPOLL_OUT | EPOLL_PRI. However there are no such constants. They are called EPOLLIN EPOLLOUT and EPOLLPRI. Please fix. -- assignee: docs@python components: