(self)
| 1480 | return tkinter.Menu(self.root, **kwargs) |
| 1481 | |
| 1482 | def test_indexcommand_none(self): |
| 1483 | widget = self.create() |
| 1484 | i = widget.index('none') |
| 1485 | self.assertIsNone(i) |
| 1486 | |
| 1487 | test_configure_activerelief = requires_tk(8, 7)(StandardOptionsTests.test_configure_activerelief) |
| 1488 |
nothing calls this directly
no test coverage detected