Commit 507898d3 authored by Senthil Kumaran's avatar Senthil Kumaran

issue27018 - Fix the documentation of select.epoll.register method.

parent f47a4003
...@@ -1438,7 +1438,7 @@ PyDoc_STRVAR(pyepoll_register_doc, ...@@ -1438,7 +1438,7 @@ PyDoc_STRVAR(pyepoll_register_doc,
Registers a new fd or raises an OSError if the fd is already registered.\n\ Registers a new fd or raises an OSError if the fd is already registered.\n\
fd is the target file descriptor of the operation.\n\ fd is the target file descriptor of the operation.\n\
events is a bit set composed of the various EPOLL constants; the default\n\ events is a bit set composed of the various EPOLL constants; the default\n\
is EPOLL_IN | EPOLL_OUT | EPOLL_PRI.\n\ is EPOLLIN | EPOLLOUT | EPOLLPRI.\n\
\n\ \n\
The epoll interface supports all file descriptors that support poll."); The epoll interface supports all file descriptors that support poll.");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment