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