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