Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL.

Patch by Jeffrey Armstrong.
This commit is contained in:
Charles-François Natali 2013-01-19 12:21:26 +01:00
commit 95195b35b8
3 changed files with 6 additions and 2 deletions

View File

@ -45,6 +45,7 @@ Jon Anglin
Heidi Annexstad
Éric Araujo
Alicia Arlen
Jeffrey Armstrong
Jason Asbahr
David Ascher
Chris AtLee

View File

@ -517,6 +517,9 @@ Tests
Build
-----
- Issue #16953: Fix socket module compilation on platforms with
HAVE_BROKEN_POLL. Patch by Jeffrey Armstrong.
- Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
- Cross compiling needs host and build settings. configure no longer

View File

@ -2098,7 +2098,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
@ -2148,7 +2148,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) {