Bug #3884: Make the turtle module toplevel again.
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 @@
 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):