mirror of
https://github.com/python/cpython.git
synced 2025-10-27 19:54:38 +00:00
9 lines
237 B
Python
9 lines
237 B
Python
|
|
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
|