From 507898d35d92835f19565249e44c9afbea238192 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Sat, 14 May 2016 21:28:22 -0700 Subject: [PATCH] issue27018 - Fix the documentation of select.epoll.register method. --- Modules/selectmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index b3ac8073a91..00324a51bf9 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.");