(self)
| 375 | self.checkCommandParam(widget, 'validatecommand') |
| 376 | |
| 377 | def test_bbox(self): |
| 378 | self.assertIsBoundingBox(self.entry.bbox(0)) |
| 379 | self.assertRaises(tkinter.TclError, self.entry.bbox, 'noindex') |
| 380 | self.assertRaises(tkinter.TclError, self.entry.bbox, None) |
| 381 | |
| 382 | def test_identify(self): |
| 383 | if (tk_version >= (9, 0) and sys.platform == 'darwin' |
nothing calls this directly
no test coverage detected