]> granicus.if.org Git - python/commitdiff
Fix end_fill().
authorGeorg Brandl <georg@python.org>
Wed, 28 Jun 2006 20:23:25 +0000 (20:23 +0000)
committerGeorg Brandl <georg@python.org>
Wed, 28 Jun 2006 20:23:25 +0000 (20:23 +0000)
Lib/lib-tk/turtle.py
Misc/NEWS

index d186ac63125f67438651dcf448511931430fd28d..0fe83a3df8e1ab3519e8ffd2b2f863650e75b2d8 100644 (file)
@@ -721,7 +721,7 @@ def color(*args): _getpen().color(*args)
 def write(arg, move=0): _getpen().write(arg, move)
 def fill(flag): _getpen().fill(flag)
 def begin_fill(): _getpen().begin_fill()
-def end_fill(): _getpen.end_fill()
+def end_fill(): _getpen().end_fill()
 def circle(radius, extent=None): _getpen().circle(radius, extent)
 def goto(*args): _getpen().goto(*args)
 def heading(): return _getpen().heading()
index efbb1453bf125d67d93330ce9b7c171bfecf66fe..61170a0d1b5dfda4cf3c56c5d1c2530602ef2435 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,8 @@ Core and builtins
 Library
 -------
 
+- Fix a bug in the turtle module's end_fill function.
+
 - Bug #1510580: The 'warnings' module improperly required that a Warning
   category be either a types.ClassType and a subclass of Warning.  The proper
   check is just that it is a subclass with Warning as the documentation states.