(self)
| 378 | self.configGUI(NORMAL, DISABLED, DISABLED) |
| 379 | |
| 380 | def stopIt(self): |
| 381 | if self.exitflag: |
| 382 | self.clearCanvas() |
| 383 | self.exitflag = False |
| 384 | self.configGUI(NORMAL, DISABLED, DISABLED, |
| 385 | "STOPPED!", "red") |
| 386 | turtle.TurtleScreen._RUNNING = False |
| 387 | |
| 388 | def _destroy(self): |
| 389 | turtle.TurtleScreen._RUNNING = False |
nothing calls this directly
no test coverage detected