Fabio Manganiello added the comment:
+1
I have similar applications (both using multithreading and multiprocessing)
which rely upon waiting for events to be both set and unset. Some example
common pattern:
```
from multithreading import Thread, Event, Queue
import time
q = Queue()
reading
New submission from Jacob Kunnappally :
Just requesting a threading.Event.wait_unset(timeout=None) function. I would
request the same for multiprocessing.
My use case:
I've made my own class that adds a little bit of IPC plumbing to the base
Process class (ChildProcess). Each ChildProcess ha