diff options
author | Georg Brandl <georg@python.org> | 2009-10-14 18:46:15 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-10-14 18:46:15 (GMT) |
commit | 46afef330f88ddcf4106094e86f54f90dbdec390 (patch) | |
tree | 01a3de2861e7ec9db7181bbf52377c19568875fe /Lib/turtle.py | |
parent | 403ce78872f6982b6ecaa96b94c88cbf0f1159e6 (diff) | |
download | cpython-46afef330f88ddcf4106094e86f54f90dbdec390.zip cpython-46afef330f88ddcf4106094e86f54f90dbdec390.tar.gz cpython-46afef330f88ddcf4106094e86f54f90dbdec390.tar.bz2 |
#7129: add missing function.
Diffstat (limited to 'Lib/turtle.py')
-rw-r--r-- | Lib/turtle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/turtle.py b/Lib/turtle.py index f0e4712..a58e65e 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -126,7 +126,7 @@ _tg_screen_functions = ['addshape', 'bgcolor', 'bgpic', 'bye', _tg_turtle_functions = ['back', 'backward', 'begin_fill', 'begin_poly', 'bk', 'circle', 'clear', 'clearstamp', 'clearstamps', 'clone', 'color', 'degrees', 'distance', 'dot', 'down', 'end_fill', 'end_poly', 'fd', - 'fillcolor', 'forward', 'get_poly', 'getpen', 'getscreen', 'get_shapepoly', + 'fillcolor', 'filling', 'forward', 'get_poly', 'getpen', 'getscreen', 'get_shapepoly', 'getturtle', 'goto', 'heading', 'hideturtle', 'home', 'ht', 'isdown', 'isvisible', 'left', 'lt', 'onclick', 'ondrag', 'onrelease', 'pd', 'pen', 'pencolor', 'pendown', 'pensize', 'penup', 'pos', 'position', |