summaryrefslogtreecommitdiff
path: root/Lib/turtledemo/forest.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/turtledemo/forest.py')
-rwxr-xr-x[-rw-r--r--]Lib/turtledemo/forest.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/Lib/turtledemo/forest.py b/Lib/turtledemo/forest.py
index a837d844c9..7fe080e633 100644..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()