/
usr
/
lib64
/
python2.7
/
Demo
/
turtle
/
/usr/lib64/python2.7/Demo/turtle
mkdir
upload
Name
Size
Mode
Actions
about_turtle.txt
3525
0644
edit
dl
rm
about_turtledemo.txt
302
0644
edit
dl
rm
demohelp.txt
3034
0644
edit
dl
rm
tdemo_bytedesign.py
4218
0755
edit
dl
rm
tdemo_bytedesign.pyc
5313
0644
edit
dl
rm
tdemo_bytedesign.pyo
5313
0644
edit
dl
rm
tdemo_chaos.py
951
0644
edit
dl
rm
tdemo_chaos.pyc
2296
0644
edit
dl
rm
tdemo_chaos.pyo
2296
0644
edit
dl
rm
tdemo_clock.py
3219
0755
edit
dl
rm
tdemo_clock.pyc
4535
0644
edit
dl
rm
tdemo_clock.pyo
4535
0644
edit
dl
rm
tdemo_colormixer.py
1338
0644
edit
dl
rm
tdemo_colormixer.pyc
2365
0644
edit
dl
rm
tdemo_colormixer.pyo
2365
0644
edit
dl
rm
tdemo_fractalcurves.py
3409
0755
edit
dl
rm
tdemo_fractalcurves.pyc
3524
0644
edit
dl
rm
tdemo_fractalcurves.pyo
3524
0644
edit
dl
rm
tdemo_I_dontlike_tiltdemo.py
1073
0755
edit
dl
rm
tdemo_I_dontlike_tiltdemo.pyc
1660
0644
edit
dl
rm
tdemo_I_dontlike_tiltdemo.pyo
1660
0644
edit
dl
rm
tdemo_lindenmayer_indian.py
2432
0755
edit
dl
rm
tdemo_lindenmayer_indian.pyc
3602
0644
edit
dl
rm
tdemo_lindenmayer_indian.pyo
3602
0644
edit
dl
rm
tdemo_minimal_hanoi.py
2049
0755
edit
dl
rm
tdemo_minimal_hanoi.pyc
3623
0644
edit
dl
rm
tdemo_minimal_hanoi.pyo
3623
0644
edit
dl
rm
tdemo_nim.py
6514
0644
edit
dl
rm
tdemo_nim.pyc
9384
0644
edit
dl
rm
tdemo_nim.pyo
9384
0644
edit
dl
rm
tdemo_paint.py
1289
0755
edit
dl
rm
tdemo_paint.pyc
1901
0644
edit
dl
rm
tdemo_paint.pyo
1901
0644
edit
dl
rm
tdemo_peace.py
1065
0755
edit
dl
rm
tdemo_peace.pyc
1388
0644
edit
dl
rm
tdemo_peace.pyo
1388
0644
edit
dl
rm
tdemo_penrose.py
3535
0755
edit
dl
rm
tdemo_penrose.pyc
6005
0644
edit
dl
rm
tdemo_penrose.pyo
6005
0644
edit
dl
rm
tdemo_planet_and_moon.py
2823
0755
edit
dl
rm
tdemo_planet_and_moon.pyc
4535
0644
edit
dl
rm
tdemo_planet_and_moon.pyo
4535
0644
edit
dl
rm
tdemo_tree.py
1410
0755
edit
dl
rm
tdemo_tree.pyc
2123
0644
edit
dl
rm
tdemo_tree.pyo
2123
0644
edit
dl
rm
tdemo_two_canvases.py
1120
0644
edit
dl
rm
tdemo_two_canvases.pyc
1635
0644
edit
dl
rm
tdemo_two_canvases.pyo
1635
0644
edit
dl
rm
tdemo_wikipedia.py
1347
0644
edit
dl
rm
tdemo_wikipedia.pyc
1955
0644
edit
dl
rm
tdemo_wikipedia.pyo
1955
0644
edit
dl
rm
tdemo_yinyang.py
807
0755
edit
dl
rm
tdemo_yinyang.pyc
1320
0644
edit
dl
rm
tdemo_yinyang.pyo
1320
0644
edit
dl
rm
turtle.cfg
160
0644
edit
dl
rm
turtleDemo.py
10091
0755
edit
dl
rm
turtleDemo.pyc
10948
0644
edit
dl
rm
turtleDemo.pyo
10948
0644
edit
dl
rm
Edit:
/usr/lib64/python2.7/Demo/turtle/demohelp.txt
(3034B)
---------------------------------------------- turtleDemo - Help ---------------------------------------------- This document has two sections: (1) How to use the demo viewer (2) How to add your own demos to the demo repository (1) How to use the demo viewer. Select a demoscript from the example menu. The (syntax colored) source code appears in the left source code window. IT CANNOT BE EDITED, but ONLY VIEWED! - Press START button to start the demo. - Stop execution by pressing the STOP button. - Clear screen by pressing the CLEAR button. - Restart by pressing the START button again. SPECIAL demos are those which run EVENTDRIVEN. (For example clock.py - or oldTurtleDemo.py which in the end expects a mouse click.): Press START button to start the demo. - Until the EVENTLOOP is entered everything works as in an ordinary demo script. - When the EVENTLOOP is entered, you control the application by using the mouse and/or keys (or it's controlled by some timer events) To stop it you can and must press the STOP button. While the EVENTLOOP is running, the examples menu is disabled. - Only after having pressed the STOP button, you may restart it or choose another example script. * * * * * * * * In some rare situations there may occur interferences/conflicts between events concerning the demo script and those concerning the demo-viewer. (They run in the same process.) Strange behaviour may be the consequence and in the worst case you must close and restart the viewer. * * * * * * * * (2) How to add your own demos to the demo repository IMPORTANT! When imported, the demo should not modify the system by calling functions in other modules, such as sys, tkinter, or turtle. Global variables should be initialized in main(). - The script name must begin with tdemo_ , so it must have the form tdemo_<your-script-name>.py - The code must contain a main() function which will be executed by the viewer (see provided example scripts). It may return a string which will be displayed in the Label below the source code window (when execution has finished.) - In order to run mydemo.py by itself, such as during development, add the following at the end of the file: if __name__ == '__main__': main() mainloop() # keep window python -m turtledemo.mydemo # will then run it - If the demo is EVENT DRIVEN, main must return the string "EVENTLOOP". This informs the demo viewer that the script is still running and must be stopped by the user! If an "EVENTLOOP" demo runs by itself, as with clock, which uses ontimer, or minimal_hanoi, which loops by recursion, then the code should catch the turtle.Terminator exception that will be raised when the user presses the STOP button. (Paint is not such a demo; it only acts in response to mouse clicks and movements.)
Save
cmd:
run