mirror of https://github.com/python/cpython
document turtle mainloop()/done() functions; thanks to Csaba Szepesvari from docs@
This commit is contained in:
parent
86d669bdb8
commit
a9db763cc0
|
@ -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
|
||||
----------------------
|
||||
|
||||
|
|
Loading…
Reference in New Issue