mirror of
https://github.com/python/cpython.git
synced 2026-03-23 21:20:45 +00:00
9 lines
235 B
Python
9 lines
235 B
Python
|
|
import sys
|
||
|
|
from warnings import warnpy3k
|
||
|
|
|
||
|
|
warnpy3k("the SimpleDialog module has been renamed "
|
||
|
|
"to 'tkinter.simpledialog' in Python 3.0", stacklevel=2)
|
||
|
|
|
||
|
|
import tkinter.simpledialog
|
||
|
|
sys.modules[__name__] = tkinter.simpledialog
|