python-fuse/AUTHORS
David Lechner 6c3990f9e3 add poll support
This adds support for the poll() function. Subclasses of fuse.Fuse
can add a poll method with the following signature:

    def poll(self, path, pollhandle):
        pass

The pollhandle parameter can be saved and used later to send a
notification by calling:

    fuse.FuseNotifyPoll(pollhandle)
2019-03-13 13:57:03 -05:00

15 lines
399 B
Text

Python bindings
===============
Csaba Henk <csaba.henk@creo.hu>
Sebastien Delafond <sdelafond@gmx.net>
Steven James
Jeff Epler <jepler@unpythonic.dhs.org>
Contributions
=============
hello.py by Andrew Straw <strawman@astraw.com>
threading related code cleaned up by Miklos Szeredi <miklos@szeredi.hu>
IOCTL support by Cédric Carrée
poll support by David Lechner <david@lechnology.com>