[Python-checkins] r47151 - in python/trunk: Lib/lib-tk/turtle.py Misc/NEWS

georg.brandl python-checkins at python.org
Wed Jun 28 22:23:26 CEST 2006


Author: georg.brandl
Date: Wed Jun 28 22:23:25 2006
New Revision: 47151

Modified:
   python/trunk/Lib/lib-tk/turtle.py
   python/trunk/Misc/NEWS
Log:
Fix end_fill().



Modified: python/trunk/Lib/lib-tk/turtle.py
==============================================================================
--- python/trunk/Lib/lib-tk/turtle.py	(original)
+++ python/trunk/Lib/lib-tk/turtle.py	Wed Jun 28 22:23:25 2006
@@ -721,7 +721,7 @@
 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()

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Wed Jun 28 22:23:25 2006
@@ -19,6 +19,8 @@
 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.


More information about the Python-checkins mailing list