New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-30644: Mention how to disable signal fd wakeup #2140
Conversation
|
@pitrou, thanks for your PR! By analyzing the history of the files in this pull request, we identified @birkenfeld, @loewis and @taleinat to be potential reviewers. |
|
Yeah, good idea and lgtm If you want to get really fancy, I guess you could also mention that on unixes it's an arbitrary FD, but on Windows it should be a socket handle (not an FD at all). |
|
If I'm reading |
(cherry picked from commit d79c1d4)
(cherry picked from commit d79c1d4)
(cherry picked from commit d79c1d4)
Ah, looks like you're right. In practice though I don't think there are any uses for passing in a regular file descriptor, because only sockets can be set in non-blocking mode, and python sockets are always represented as socket handles and not wrapped into an fd. |
No description provided.