From fb909671c8af29706bb8089ee67637f1a81e1a20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Sat, 10 Oct 2020 14:50:47 +0200 Subject: [PATCH] Removed doxygen param This param does not exists in the monitor function. --- offlineimap/threadutil.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/offlineimap/threadutil.py b/offlineimap/threadutil.py index 2673542..fd4b10b 100644 --- a/offlineimap/threadutil.py +++ b/offlineimap/threadutil.py @@ -78,17 +78,6 @@ def monitor(): """An infinite "monitoring" loop watching for finished ExitNotifyThread's. This one is supposed to run in the main thread. - :param callback: the function to call when a thread terminated. That - function is called with a single argument -- the - ExitNotifyThread that has terminated. The monitor will - not continue to monitor for other threads until - 'callback' returns, so if it intends to perform long - calculations, it should start a new thread itself -- but - NOT an ExitNotifyThread, or else an infinite loop - may result. - Furthermore, the monitor will hold the lock all the - while the other thread is waiting. - :type callback: a callable function """ global exitedThreads