document turtle mainloop()/done() functions; thanks to Csaba Szepesvari from docs@

This commit is contained in:
Sandro Tosi 2011-10-31 10:08:14 +01:00
parent 86d669bdb8
commit a9db763cc0
1 changed files with 10 additions and 0 deletions

View File

@ -157,6 +157,7 @@ Using events
| :func:`onclick`
| :func:`onrelease`
| :func:`ondrag`
| :func:`mainloop` | :func:`done`
Special Turtle methods
| :func:`begin_poly`
@ -1291,6 +1292,15 @@ Using events
the screen thereby producing handdrawings (if pen is down).
.. function:: mainloop()
done()
Starts event loop - calling Tkinter's mainloop function. Must be the last
statement in a turtle graphics program.
>>> turtle.mainloop()
Special Turtle methods
----------------------