Fills in the canvas with the given color.
(self, background)
| 60 | self.canvas.delete(tkinter.ALL) |
| 61 | |
| 62 | def fill(self, background): |
| 63 | "Fills in the canvas with the given color." |
| 64 | self.canvas.configure(background=background) |
| 65 | |
| 66 | ################################################################################ |
| 67 |
no test coverage detected