[Python-checkins] r75416 - python/branches/py3k/Lib/turtle.py

georg.brandl python-checkins at python.org
Wed Oct 14 20:46:16 CEST 2009


Author: georg.brandl
Date: Wed Oct 14 20:46:15 2009
New Revision: 75416

Log:
#7129: add missing function.

Modified:
   python/branches/py3k/Lib/turtle.py

Modified: python/branches/py3k/Lib/turtle.py
==============================================================================
--- python/branches/py3k/Lib/turtle.py	(original)
+++ python/branches/py3k/Lib/turtle.py	Wed Oct 14 20:46:15 2009
@@ -126,7 +126,7 @@
 _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',


More information about the Python-checkins mailing list