blob: 88b8c613bdc359c9d511f9c303129646aba2a8f2 (
plain)
1
2
3
4
5
6
7
8
|
import sys
from warnings import warnpy3k
warnpy3k("the turtle module has been renamed "
"to 'tkinter.turtle' in Python 3.0", stacklevel=2)
import tkinter.turtle
sys.modules[__name__] = tkinter.turtle
|