diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-07-10 22:11:28 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-07-10 22:11:28 (GMT) |
commit | 06c68b800ca3e31d2551923083ce8294ab94cb24 (patch) | |
tree | 55f5e94158b05c9fcc5d8138fd5f9109a0bb3f22 /Doc | |
parent | 722b88308da16225530a8852adc0581a918d5105 (diff) | |
download | cpython-06c68b800ca3e31d2551923083ce8294ab94cb24.zip cpython-06c68b800ca3e31d2551923083ce8294ab94cb24.tar.gz cpython-06c68b800ca3e31d2551923083ce8294ab94cb24.tar.bz2 |
Patch #1519566: Remove unused _tofill member.
Make begin_fill idempotent.
Update demo2 to demonstrate filling of concave shapes.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libturtle.tex | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/lib/libturtle.tex b/Doc/lib/libturtle.tex index 6b9585f..2b329b7 100644 --- a/Doc/lib/libturtle.tex +++ b/Doc/lib/libturtle.tex @@ -108,7 +108,9 @@ and call \code{fill(0)} when you finish to draw the path. \end{funcdesc} \begin{funcdesc}{begin\_fill}{} -Switch turtle into filling mode; equivalent to \code{fill(1)}. +Switch turtle into filling mode; +Must eventually be followed by a corresponding end_fill() call. +Otherwise it will be ignored. \versionadded{2.5} \end{funcdesc} |