summaryrefslogtreecommitdiff
path: root/python3/pyinotify.py
diff options
context:
space:
mode:
Diffstat (limited to 'python3/pyinotify.py')
-rwxr-xr-xpython3/pyinotify.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python3/pyinotify.py b/python3/pyinotify.py
index f4e76e5..576ec52 100755
--- a/python3/pyinotify.py
+++ b/python3/pyinotify.py
@@ -1622,6 +1622,10 @@ class AsyncioNotifier(Notifier):
threshold, timeout)
loop.add_reader(self._fd, self.handle_read)
+ def stop(self):
+ self.loop.remove_reader(self._fd)
+ Notifier.stop(self)
+
def handle_read(self, *args, **kwargs):
self.read_events()
self.process_events()