[issue25602] Add support for EVFILT_USER kqueue filter

2016-06-19 Thread Ned Deily
Ned Deily added the comment: Thanks for contributing the patch, Jakub. I'm sorry that there's been no action on it; unfortunately, the BSD platforms don't get as much attention here as some others. I took a cursory look at it and the patch looks pretty good to me and applies/builds cleanly

[issue25602] Add support for EVFILT_USER kqueue filter

2016-06-06 Thread William Grzybowski
William Grzybowski added the comment: I have bumped into this issue as well. This change would be much appreciate on my end. What can we do to move the ball forward here? Thanks! -- nosy: +wg ___ Python tracker

[issue25602] Add support for EVFILT_USER kqueue filter

2016-01-14 Thread SilentGhost
Changes by SilentGhost : -- nosy: +haypo stage: -> patch review ___ Python tracker ___

[issue25602] Add support for EVFILT_USER kqueue filter

2016-01-14 Thread Jakub Klama
Jakub Klama added the comment: Hey, any news on this? I've created that issue over 2 months ago and it didn't get even commented since then. -- ___ Python tracker

[issue25602] Add support for EVFILT_USER kqueue filter

2015-11-11 Thread Jakub Klama
New submission from Jakub Klama: It's useful for doing signaling between threads (especially I/O-bound threads). Related github pull request: https://github.com/python/cpython/pull/23 -- components: Library (Lib) files: 0001-Add-support-for-EVFILT_USER-kqueue-filter.patch keywords: