Writes the text to bottom-left of location.
(self, x, y, text, fill)
| 52 | fill=fill, outline=outline) |
| 53 | |
| 54 | def write(self, x, y, text, fill): |
| 55 | "Writes the text to bottom-left of location." |
| 56 | self.canvas.create_text(x, y, text=text, fill=fill, anchor=tkinter.NW) |
| 57 | |
| 58 | def clear(self): |
| 59 | "Clears canvas of all objects shown on it." |
no outgoing calls
no test coverage detected