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 gvanrossum, loewis, neologix, pitrou, python-dev, vstinner, yselivanov
Date 2014-07-24.23:40:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAMpsgwZnyqGU5NNm5E_oNx8a_fU5AxEXb0Cu76fZfxCFcPNdCA@mail.gmail.com>
In-reply-to <1406241379.06.0.943976828007.issue22018@psf.upfronthosting.co.za>
Content
> Does you have an idea if set_wakeup_fd() is used on Windows? It's not possible to use it with select.select() because on Windows this function only accepts sockets. I don't know if it's possible to watch a pipe using IOCP. Is set_wakeup_fd() used by Twisted, Tornado or another project on Windows?

I checked Twisted: signal.set_wakeup_fd() is only used on POSIX, as
expected (since it doesn't work with select on Windows). But Twisted
sets a signal handler for SIGINT, SIGTERM and SIGBREAK.
History
Date User Action Args
2014-07-24 23:40:36vstinnersetrecipients: + vstinner, gvanrossum, loewis, pitrou, neologix, python-dev, yselivanov
2014-07-24 23:40:36vstinnerlinkissue22018 messages
2014-07-24 23:40:36vstinnercreate