(self)
| 346 | return False |
| 347 | |
| 348 | def set(self): |
| 349 | with self._cond: |
| 350 | self._flag.acquire(False) |
| 351 | self._flag.release() |
| 352 | self._cond.notify_all() |
| 353 | |
| 354 | def clear(self): |
| 355 | with self._cond: |
nothing calls this directly
no test coverage detected