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 neologix, pitrou, pklanke, vstinner, yselivanov
Date 2017-11-02.15:54:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1509638074.05.0.213398074469.issue30844@psf.upfronthosting.co.za>
In-reply-to
Content
It seems like kqueue supports urgent data:

"EV_OOBAND: Read filter on socket may set this flag to indicate the presence of out of band data on the descriptor."

Example: https://github.com/daurnimator/cqueues/commit/52baaf1c25bc7e6f7cb4685cb05f4ed47a3f404a

Be careful, I also found:

// Older versions of Mac OS X may not define EV_OOBAND.
#if !defined(EV_OOBAND)
# define EV_OOBAND EV_FLAG1
#endif // !defined(EV_OOBAND)
History
Date User Action Args
2017-11-02 15:54:34vstinnersetrecipients: + vstinner, pitrou, neologix, yselivanov, pklanke
2017-11-02 15:54:34vstinnersetmessageid: <1509638074.05.0.213398074469.issue30844@psf.upfronthosting.co.za>
2017-11-02 15:54:34vstinnerlinkissue30844 messages
2017-11-02 15:54:34vstinnercreate