blob: 88b8c613bdc359c9d511f9c303129646aba2a8f2 [file] [log] [blame]
Georg Brandlad9afeb2008-05-16 15:48:15 +00001import sys
2from warnings import warnpy3k
3
4warnpy3k("the turtle module has been renamed "
5 "to 'tkinter.turtle' in Python 3.0", stacklevel=2)
6
7import tkinter.turtle
8sys.modules[__name__] = tkinter.turtle