(coord, wait_for_stop, set_when_stopped)
| 28 | |
| 29 | |
| 30 | def StopOnEvent(coord, wait_for_stop, set_when_stopped): |
| 31 | wait_for_stop.wait() |
| 32 | coord.request_stop() |
| 33 | set_when_stopped.set() |
| 34 | |
| 35 | |
| 36 | def RaiseOnEvent(coord, wait_for_stop, set_when_stopped, ex, report_exception): |
nothing calls this directly
no test coverage detected