cpython/Lib/lib-tk/tkFileDialog.py

9 lines
229 B
Python
Raw Normal View History

2008-05-17 15:21:58 +00:00
import sys
from warnings import warnpy3k
1997-07-19 20:02:36 +00:00
2008-05-17 15:21:58 +00:00
warnpy3k("the tkFileDialog module has been renamed "
"to 'tkinter.filedialog' in Python 3.0", stacklevel=2)
2002-10-13 10:28:04 +00:00
2008-05-17 15:21:58 +00:00
import tkinter.filedialog
sys.modules[__name__] = tkinter.filedialog