Shut the turtlegraphics window. Example (for a TurtleScreen instance named screen): >>> screen.bye()
(self)
| 3657 | root.destroy() |
| 3658 | |
| 3659 | def bye(self): |
| 3660 | """Shut the turtlegraphics window. |
| 3661 | |
| 3662 | Example (for a TurtleScreen instance named screen): |
| 3663 | >>> screen.bye() |
| 3664 | """ |
| 3665 | self._destroy() |
| 3666 | |
| 3667 | def exitonclick(self): |
| 3668 | """Go into mainloop until the mouse is clicked. |
no test coverage detected