Bug #3884: Make the turtle module toplevel again.
diff --git a/Demo/turtle/tdemo_chaos.py b/Demo/turtle/tdemo_chaos.py
index 73a0453..55b4bbd 100644
--- a/Demo/turtle/tdemo_chaos.py
+++ b/Demo/turtle/tdemo_chaos.py
@@ -4,7 +4,7 @@
 
 # Ein einfaches Programm zur Demonstration von "chaotischem Verhalten".
 
-from tkinter.turtle import *
+from turtle import *
 
 def f(x):
     return 3.9*x*(1-x)