Update drawing to the window
(self)
| 314 | self.__autoflush() |
| 315 | |
| 316 | def flush(self): |
| 317 | """Update drawing to the window""" |
| 318 | #self.update_idletasks() |
| 319 | self.__checkOpen() |
| 320 | _tkCall(self.update_idletasks) |
| 321 | |
| 322 | def getMouse(self): |
| 323 | """Wait for mouse click and return Point object representing |
nothing calls this directly
no test coverage detected