(self)
| 340 | |
| 341 | def test_repeated_force(self): |
| 342 | def force(self): |
| 343 | for char in 'abc': |
| 344 | self.text.insert('insert', 'a') |
| 345 | self.ct.open_calltip(True) |
| 346 | self.ct.open_calltip(True) |
| 347 | self.assertIs(self.ct.active_calltip, self.tip) |
| 348 | self.open_close(force) |
| 349 | |
| 350 | def test_repeated_parens(self): |
nothing calls this directly
no test coverage detected