mirror of
https://github.com/python/cpython.git
synced 2026-05-29 15:45:56 -04:00
9 lines
191 B
Python
9 lines
191 B
Python
import sys
|
|
from warnings import warnpy3k
|
|
|
|
warnpy3k("the Tkinter module has been renamed "
|
|
"to 'tkinter' in Python 3.0", stacklevel=2)
|
|
|
|
import tkinter
|
|
sys.modules[__name__] = tkinter
|