From: Martin v. Löwis Date: Sat, 17 Jun 2006 18:44:27 +0000 (+0000) Subject: Patch #812986: Update the canvas even if not tracing. X-Git-Tag: v2.5b1~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3798da0f92bcd4ace1cae465e83329b9b519096f;p=thirdparty%2FPython%2Fcpython.git Patch #812986: Update the canvas even if not tracing. --- diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index d68e405cd6fc..d186ac63125f 100644 --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py @@ -634,6 +634,7 @@ class RawPen: def _draw_turtle(self, position=[]): if not self._tracing: + self._canvas.update() return if position == []: position = self._position diff --git a/Misc/NEWS b/Misc/NEWS index 165048c1fefb..7021236f9812 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -163,6 +163,8 @@ Extension Modules Library ------- +- Patch #812986: Update turtle output even if not tracing. + - Patch #1494750: Destroy master after deleting children in Tkinter.BaseWidget.