pyinotify icon indicating copy to clipboard operation
pyinotify copied to clipboard

check if select.poll is present, switch to select.select if not

Open kkurian opened this issue 11 years ago • 3 comments

select.poll() is not supported by all platforms and so "most libraries check if select.poll() is present and switch to select.select() if it's not." [1]

The popular gevent library depends upon the above behavior and removes select.poll().

Request: In order to support gevent, check if select.poll is present and switch to select.select if it is not.

kkurian avatar Jul 11 '14 15:07 kkurian

I doubt I will have the time to implement it any time soon but if well abstracted il would be nice indeed.

seb-m avatar Jul 11 '14 16:07 seb-m

@seb-m Please let me know if #117 meets your requirements.

jstasiak avatar Jan 07 '16 10:01 jstasiak

@kkurian As this repository seems unmaintained we've created a fork[1](note: it requires Python 3.5+), the fork fixes the issue you describe here.

[1] https://pypi.python.org/pypi/pyinotify-smarkets

jstasiak avatar Aug 15 '16 12:08 jstasiak