blob: 7230c8a54dd4793cd528ad436c1d3c151fe51899 [file] [log] [blame]
Georg Brandl8291f8e2008-05-17 15:21:58 +00001import sys
2from warnings import warnpy3k
Guido van Rossumf55afae1997-08-12 18:21:21 +00003
Georg Brandl8291f8e2008-05-17 15:21:58 +00004warnpy3k("the tkSimpleDialog module has been renamed "
5 "to 'tkinter.simpledialog' in Python 3.0", stacklevel=2)
Guido van Rossumf55afae1997-08-12 18:21:21 +00006
Georg Brandl8291f8e2008-05-17 15:21:58 +00007import tkinter.simpledialog
8sys.modules[__name__] = tkinter.simpledialog