(self)
| 524 | self.assertEqual(results2, [True] * N) |
| 525 | |
| 526 | def test_notify(self): |
| 527 | evt = self.eventtype() |
| 528 | self._check_notify(evt) |
| 529 | # Another time, after an explicit clear() |
| 530 | evt.set() |
| 531 | evt.clear() |
| 532 | self._check_notify(evt) |
| 533 | |
| 534 | def test_timeout(self): |
| 535 | evt = self.eventtype() |
nothing calls this directly
no test coverage detected