diff options
| author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-25 02:21:56 (GMT) |
|---|---|---|
| committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-25 02:21:56 (GMT) |
| commit | 5827da3f9f79e37bd15e8a1ff52d0744e611d81b (patch) | |
| tree | aa549c2b41dbaef8ed3012d8156f9257b0737554 /Lib/turtledemo/forest.py | |
| parent | d04d511078777544cbe5fe929a2ffba95c1976f1 (diff) | |
| parent | c5a72e6971b2927aa5fbfa6d7e02f6018b989768 (diff) | |
| download | cpython-5827da3f9f79e37bd15e8a1ff52d0744e611d81b.zip cpython-5827da3f9f79e37bd15e8a1ff52d0744e611d81b.tar.gz cpython-5827da3f9f79e37bd15e8a1ff52d0744e611d81b.tar.bz2 | |
Merge with 3.4
Diffstat (limited to 'Lib/turtledemo/forest.py')
| -rwxr-xr-x | Lib/turtledemo/forest.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Lib/turtledemo/forest.py b/Lib/turtledemo/forest.py index a837d84..7fe080e 100755 --- a/Lib/turtledemo/forest.py +++ b/Lib/turtledemo/forest.py @@ -3,12 +3,12 @@ tdemo_forest.py -Displays a 'forest' of 3 'breadth-first-trees' -similar to the one from example tree. -For further remarks see xtx_tree.py +Displays a 'forest' of 3 breadth-first-trees +similar to the one in tree. +For further remarks see tree.py This example is a 'breadth-first'-rewrite of -a Logo program written by Erich Neuwirth. See: +a Logo program written by Erich Neuwirth. See http://homepage.univie.ac.at/erich.neuwirth/ """ from turtle import Turtle, colormode, tracer, mainloop @@ -104,6 +104,5 @@ def main(): return "runtime: %.2f sec." % (b-a) if __name__ == '__main__': - msg = main() - print(msg) + main() mainloop() |
