From: Georg Brandl Date: Wed, 14 Oct 2009 18:46:15 +0000 (+0000) Subject: #7129: add missing function. X-Git-Tag: v3.2a1~2395 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=46afef330f88ddcf4106094e86f54f90dbdec390;p=thirdparty%2FPython%2Fcpython.git #7129: add missing function. --- diff --git a/Lib/turtle.py b/Lib/turtle.py index f0e4712565c4..a58e65e03c05 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',