(self)
| 805 | return tkinter.Canvas(self.root, **kwargs) |
| 806 | |
| 807 | def test_configure_closeenough(self): |
| 808 | widget = self.create() |
| 809 | self.checkFloatParam(widget, 'closeenough', 24, 2.4, 3.6, -3, |
| 810 | conv=float) |
| 811 | |
| 812 | def test_configure_confine(self): |
| 813 | widget = self.create() |
nothing calls this directly
no test coverage detected