[Python-checkins] r66627 - in python/branches/release25-maint: Lib/lib-tk/turtle.py Misc/NEWS

georg.brandl python-checkins at python.org
Fri Sep 26 09:17:03 CEST 2008


Author: georg.brandl
Date: Fri Sep 26 09:17:03 2008
New Revision: 66627

Log:
#3968: fix missing update() call in end_fill().


Modified:
   python/branches/release25-maint/Lib/lib-tk/turtle.py
   python/branches/release25-maint/Misc/NEWS

Modified: python/branches/release25-maint/Lib/lib-tk/turtle.py
==============================================================================
--- python/branches/release25-maint/Lib/lib-tk/turtle.py	(original)
+++ python/branches/release25-maint/Lib/lib-tk/turtle.py	Fri Sep 26 09:17:03 2008
@@ -306,6 +306,7 @@
                                             {'fill': self._color,
                                              'smooth': smooth})
                 self._items.append(item)
+                self._canvas.update()
         self._path = []
         self._filling = flag
         if flag:

Modified: python/branches/release25-maint/Misc/NEWS
==============================================================================
--- python/branches/release25-maint/Misc/NEWS	(original)
+++ python/branches/release25-maint/Misc/NEWS	Fri Sep 26 09:17:03 2008
@@ -89,6 +89,8 @@
 Library
 -------
 
+- Issues #3968 and #3969: two minor turtle problems.
+
 - Issue #3547: Fixed ctypes structures bitfields of varying integer
   sizes.
 


More information about the Python-checkins mailing list