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 byllyfish
Recipients byllyfish, christian.heimes, erlendaasland, miss-islington
Date 2022-01-07.03:51:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641527494.32.0.0292555063525.issue45723@roundup.psfhosted.org>
In-reply-to
Content
In the conversion to PY_CHECK_FUNC, there's a mistake in HAVE_EPOLL.

Python 3.10.1 defines HAVE_EPOLL by checking for the `epoll_create` function. Python 3.11.0a3 checks for the `epoll` function instead. There is no epoll() function so this always fails.

The effect is that `epoll` doesn't exist in the `select` module on Python 3.11.0a3. Most code that uses epoll falls back when it is not available, so this may not be failing any tests.
History
Date User Action Args
2022-01-07 03:51:34byllyfishsetrecipients: + byllyfish, christian.heimes, miss-islington, erlendaasland
2022-01-07 03:51:34byllyfishsetmessageid: <1641527494.32.0.0292555063525.issue45723@roundup.psfhosted.org>
2022-01-07 03:51:34byllyfishlinkissue45723 messages
2022-01-07 03:51:34byllyfishcreate