diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2016-05-15 04:29:03 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2016-05-15 04:29:03 (GMT) |
commit | 0594cff293e9e2a50a5440badc27c672047ba76e (patch) | |
tree | bef0fb157c6b49fa1615dd019c205a2cf3993ab9 /Modules | |
parent | 3e2a0715d73011682956c5a397b35efc2377d6d4 (diff) | |
parent | 507898d35d92835f19565249e44c9afbea238192 (diff) | |
download | cpython-0594cff293e9e2a50a5440badc27c672047ba76e.zip cpython-0594cff293e9e2a50a5440badc27c672047ba76e.tar.gz cpython-0594cff293e9e2a50a5440badc27c672047ba76e.tar.bz2 |
merge from 3.5
issue27018 - Fix the documentation of select.epoll.register method.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/selectmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index c8b85a0..a6b63d2 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -1438,7 +1438,7 @@ PyDoc_STRVAR(pyepoll_register_doc, 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\ 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\ The epoll interface supports all file descriptors that support poll."); |