From f2944600bd9ec9840e3f285004d14aa4837465b4 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 10 Aug 2007 17:29:51 +0000 Subject: [PATCH] Fix #1771558 (already fixed in trunk). --- Lib/lib-tk/turtle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index 01a55b1522..fcde9af4ed 100644 --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py @@ -15,6 +15,7 @@ pictures can easily be drawn. """ from math import * # Also for export +from time import sleep import Tkinter speeds = ['fastest', 'fast', 'normal', 'slow', 'slowest'] @@ -949,7 +950,6 @@ def demo2(): if __name__ == '__main__': - from time import sleep demo() sleep(3) demo2() -- 2.50.1