r66627 - in python/branches/release25-maint: Lib/lib-tk/turtle.py Misc/NEWS
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.
participants (1)
-
georg.brandl