summaryrefslogtreecommitdiffstats
path: root/Modules/selectmodule.c
diff options
context:
space:
mode:
authorCharles-François Natali <cf.natali@gmail.com>2013-01-19 11:39:29 (GMT)
committerCharles-François Natali <cf.natali@gmail.com>2013-01-19 11:39:29 (GMT)
commitc07fcbb698488edc6a735f8b32bbce186106accb (patch)
treeeabf10c79f3b56524f2cf8b51b60adf076ffb2d8 /Modules/selectmodule.c
parentd4aa83cd5f61382db001d8e1a080b98ce77df984 (diff)
parent95195b35b84979f9d893d09c594309b4c79d3d56 (diff)
downloadcpython-c07fcbb698488edc6a735f8b32bbce186106accb.zip
cpython-c07fcbb698488edc6a735f8b32bbce186106accb.tar.gz
cpython-c07fcbb698488edc6a735f8b32bbce186106accb.tar.bz2
Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL.
Patch by Jeffrey Armstrong.
Diffstat (limited to 'Modules/selectmodule.c')
-rw-r--r--Modules/selectmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index e79bea3..4c84312 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -2115,7 +2115,7 @@ descriptors can be used.");
static PyMethodDef select_methods[] = {
{"select", select_select, METH_VARARGS, select_doc},
-#ifdef HAVE_POLL
+#if defined(HAVE_POLL) && !defined(HAVE_BROKEN_POLL)
{"poll", select_poll, METH_NOARGS, poll_doc},
#endif /* HAVE_POLL */
#ifdef HAVE_SYS_DEVPOLL_H
@@ -2165,7 +2165,7 @@ PyInit_select(void)
PyModule_AddIntConstant(m, "PIPE_BUF", PIPE_BUF);
#endif
-#if defined(HAVE_POLL)
+#if defined(HAVE_POLL) && !defined(HAVE_BROKEN_POLL)
#ifdef __APPLE__
if (select_have_broken_poll()) {
if (PyObject_DelAttrString(m, "poll") == -1) {