diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-06-17 18:44:27 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-06-17 18:44:27 (GMT) |
commit | 3798da0f92bcd4ace1cae465e83329b9b519096f (patch) | |
tree | a650e2ba433e8ff3b7803e38d7f4753b479a7126 | |
parent | 3f1f7bec746a109d3354faf1611122da0aa69e9e (diff) | |
download | cpython-3798da0f92bcd4ace1cae465e83329b9b519096f.zip cpython-3798da0f92bcd4ace1cae465e83329b9b519096f.tar.gz cpython-3798da0f92bcd4ace1cae465e83329b9b519096f.tar.bz2 |
Patch #812986: Update the canvas even if not tracing.
-rw-r--r-- | Lib/lib-tk/turtle.py | 1 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index d68e405..d186ac6 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 @@ -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. |