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 vstinner
Recipients Aleksey Kladov, vstinner
Date 2015-11-20.14:36:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1448030198.7.0.693514644561.issue25680@psf.upfronthosting.co.za>
In-reply-to
Content
Your code doesn't make sense. You listen to 0 file descriptor and wait forever until you get events, which will never occur. I'm not even sure that it should be allowed by the Selector API.

What's the point of your bug report? Does your application really rely on the behaviour of the selector when no file descriptor is registered?

The behaviour changes between Linux and OS X because the "default" selector is a different selector on Linux (epoll) and OS X (kqueue? select?)
History
Date User Action Args
2015-11-20 14:36:38vstinnersetrecipients: + vstinner, Aleksey Kladov
2015-11-20 14:36:38vstinnersetmessageid: <1448030198.7.0.693514644561.issue25680@psf.upfronthosting.co.za>
2015-11-20 14:36:38vstinnerlinkissue25680 messages
2015-11-20 14:36:38vstinnercreate