(self)
| 339 | return False |
| 340 | |
| 341 | def set(self): |
| 342 | with self._cond: |
| 343 | self._flag.acquire(False) |
| 344 | self._flag.release() |
| 345 | self._cond.notify_all() |
| 346 | |
| 347 | def clear(self): |
| 348 | with self._cond: |
nothing calls this directly
no test coverage detected