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