[issue40871] threading.Event.wait_unset()

2020-09-25 Thread Fabio Manganiello
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

[issue40871] threading.Event.wait_unset()

2020-06-05 Thread Jacob Kunnappally
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