summaryrefslogtreecommitdiffstats
path: root/Demo/turtle/tdemo_fractalcurves.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-09-21 07:32:10 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-09-21 07:32:10 (GMT)
commit60ebb8b0aa0e0aa2ae7c06aa05434f33ae1fe696 (patch)
tree91c87c1592948732b3ed9818f4d8069fa1277ca2 /Demo/turtle/tdemo_fractalcurves.py
parent8e3548350d81c3461a5be63eb3fd646e3243a2c6 (diff)
downloadcpython-60ebb8b0aa0e0aa2ae7c06aa05434f33ae1fe696.zip
cpython-60ebb8b0aa0e0aa2ae7c06aa05434f33ae1fe696.tar.gz
cpython-60ebb8b0aa0e0aa2ae7c06aa05434f33ae1fe696.tar.bz2
Bug #3884: Make the turtle module toplevel again.
Diffstat (limited to 'Demo/turtle/tdemo_fractalcurves.py')
-rw-r--r--Demo/turtle/tdemo_fractalcurves.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/turtle/tdemo_fractalcurves.py b/Demo/turtle/tdemo_fractalcurves.py
index b7c387b..247f16c 100644
--- a/Demo/turtle/tdemo_fractalcurves.py
+++ b/Demo/turtle/tdemo_fractalcurves.py
@@ -11,7 +11,7 @@ The CurvesTurtle class and the fractal-curve-
methods are taken from the PythonCard example
scripts for turtle-graphics.
"""
-from tkinter.turtle import *
+from turtle import *
from time import sleep, clock
class CurvesTurtle(Pen):