diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-25 02:21:41 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-25 02:21:41 (GMT) |
commit | c5a72e6971b2927aa5fbfa6d7e02f6018b989768 (patch) | |
tree | 08fa163da474ab4f506c697e951cfe47a49771d9 /Lib/turtledemo/tree.py | |
parent | 6f6922c0906e2986e221cb48c338f67ee72f1aee (diff) | |
download | cpython-c5a72e6971b2927aa5fbfa6d7e02f6018b989768.zip cpython-c5a72e6971b2927aa5fbfa6d7e02f6018b989768.tar.gz cpython-c5a72e6971b2927aa5fbfa6d7e02f6018b989768.tar.bz2 |
Issue #14117: Inprove help text and docstrings, some for clarity, some just to
fit in the default width of the text window (45 chars).
Diffstat (limited to 'Lib/turtledemo/tree.py')
-rwxr-xr-x | Lib/turtledemo/tree.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/turtledemo/tree.py b/Lib/turtledemo/tree.py index 9c0b1f7..71fff35 100755 --- a/Lib/turtledemo/tree.py +++ b/Lib/turtledemo/tree.py @@ -11,9 +11,9 @@ Uses: (1) a tree-generator, where the drawing is quasi the side-effect, whereas the generator always yields None. -(2) Turtle-cloning: At each branching point the -current pen is cloned. So in the end there -are 1024 turtles. +(2) Turtle-cloning: At each branching point +the current pen is cloned. So in the end +there are 1024 turtles. """ from turtle import Turtle, mainloop from time import clock |