mirror of
https://github.com/python/cpython.git
synced 2025-08-15 22:30:42 +00:00
Fix closes issue 11568 - update select.epoll.register docstring with mention of correct behavior.
This commit is contained in:
parent
e4ef726879
commit
2bd9100b2a
1 changed files with 1 additions and 1 deletions
|
@ -912,7 +912,7 @@ pyepoll_register(pyEpoll_Object *self, PyObject *args, PyObject *kwds)
|
|||
PyDoc_STRVAR(pyepoll_register_doc,
|
||||
"register(fd[, eventmask]) -> None\n\
|
||||
\n\
|
||||
Registers a new fd or modifies an already registered fd.\n\
|
||||
Registers a new fd or raises an IOError if the fd is already registered.\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\
|
||||
is EPOLL_IN | EPOLL_OUT | EPOLL_PRI.\n\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue