/usr/lib64/python2.7/Demo/turtle
NameSizeModeActions
about_turtle.txt35250644editdlrm
about_turtledemo.txt3020644editdlrm
demohelp.txt30340644editdlrm
tdemo_bytedesign.py42180755editdlrm
tdemo_bytedesign.pyc53130644editdlrm
tdemo_bytedesign.pyo53130644editdlrm
tdemo_chaos.py9510644editdlrm
tdemo_chaos.pyc22960644editdlrm
tdemo_chaos.pyo22960644editdlrm
tdemo_clock.py32190755editdlrm
tdemo_clock.pyc45350644editdlrm
tdemo_clock.pyo45350644editdlrm
tdemo_colormixer.py13380644editdlrm
tdemo_colormixer.pyc23650644editdlrm
tdemo_colormixer.pyo23650644editdlrm
tdemo_fractalcurves.py34090755editdlrm
tdemo_fractalcurves.pyc35240644editdlrm
tdemo_fractalcurves.pyo35240644editdlrm
tdemo_I_dontlike_tiltdemo.py10730755editdlrm
tdemo_I_dontlike_tiltdemo.pyc16600644editdlrm
tdemo_I_dontlike_tiltdemo.pyo16600644editdlrm
tdemo_lindenmayer_indian.py24320755editdlrm
tdemo_lindenmayer_indian.pyc36020644editdlrm
tdemo_lindenmayer_indian.pyo36020644editdlrm
tdemo_minimal_hanoi.py20490755editdlrm
tdemo_minimal_hanoi.pyc36230644editdlrm
tdemo_minimal_hanoi.pyo36230644editdlrm
tdemo_nim.py65140644editdlrm
tdemo_nim.pyc93840644editdlrm
tdemo_nim.pyo93840644editdlrm
tdemo_paint.py12890755editdlrm
tdemo_paint.pyc19010644editdlrm
tdemo_paint.pyo19010644editdlrm
tdemo_peace.py10650755editdlrm
tdemo_peace.pyc13880644editdlrm
tdemo_peace.pyo13880644editdlrm
tdemo_penrose.py35350755editdlrm
tdemo_penrose.pyc60050644editdlrm
tdemo_penrose.pyo60050644editdlrm
tdemo_planet_and_moon.py28230755editdlrm
tdemo_planet_and_moon.pyc45350644editdlrm
tdemo_planet_and_moon.pyo45350644editdlrm
tdemo_tree.py14100755editdlrm
tdemo_tree.pyc21230644editdlrm
tdemo_tree.pyo21230644editdlrm
tdemo_two_canvases.py11200644editdlrm
tdemo_two_canvases.pyc16350644editdlrm
tdemo_two_canvases.pyo16350644editdlrm
tdemo_wikipedia.py13470644editdlrm
tdemo_wikipedia.pyc19550644editdlrm
tdemo_wikipedia.pyo19550644editdlrm
tdemo_yinyang.py8070755editdlrm
tdemo_yinyang.pyc13200644editdlrm
tdemo_yinyang.pyo13200644editdlrm
turtle.cfg1600644editdlrm
turtleDemo.py100910755editdlrm
turtleDemo.pyc109480644editdlrm
turtleDemo.pyo109480644editdlrm
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_.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.)