blob: 9e403c75074677778e0274c2b6de3c724a978a34 [file] [log] [blame]
Georg Brandl8291f8e2008-05-17 15:21:58 +00001import sys
2from warnings import warnpy3k
Guido van Rossum1e8c8a21997-07-19 20:02:36 +00003
Georg Brandl8291f8e2008-05-17 15:21:58 +00004warnpy3k("the tkFileDialog module has been renamed "
5 "to 'tkinter.filedialog' in Python 3.0", stacklevel=2)
Martin v. Löwisb24e3472002-10-13 10:28:04 +00006
Georg Brandl8291f8e2008-05-17 15:21:58 +00007import tkinter.filedialog
8sys.modules[__name__] = tkinter.filedialog