This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eryksun
Recipients David Hirschfeld, andzn, asvetlov, desbma, eryksun, paul.moore, pitrou, steve.dower, tim.golden, vstinner, zach.ware
Date 2019-06-06.13:59:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559829574.3.0.110498561394.issue28708@roundup.psfhosted.org>
In-reply-to
Content
> Those fd_sets are currently allocated on stack and the array they 
> contain is determined currently by FD_SETSIZE. We'll basically need 
> a similar structure that we can allocate dynamically, and cast it to
> fd_set when passing it to the select call.

This is possible in Windows. Other platforms are limited to a fixed FD_SETSIZE, in which case the old error should be retained:

        if (index >= (unsigned int)FD_SETSIZE) {
            PyErr_SetString(PyExc_ValueError,
                          "too many file descriptors in select()");
            goto finally;
        }
History
Date User Action Args
2019-06-06 13:59:34eryksunsetrecipients: + eryksun, paul.moore, pitrou, vstinner, tim.golden, asvetlov, zach.ware, desbma, steve.dower, David Hirschfeld, andzn
2019-06-06 13:59:34eryksunsetmessageid: <1559829574.3.0.110498561394.issue28708@roundup.psfhosted.org>
2019-06-06 13:59:34eryksunlinkissue28708 messages
2019-06-06 13:59:34eryksuncreate