mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 23:09:40 +00:00
9 lines
148 B
Python
9 lines
148 B
Python
import tkinter
|
|
import _tkinter
|
|
|
|
lib = tkinter.Tk().getvar('tk_version')
|
|
header = _tkinter.TK_VERSION
|
|
|
|
if lib != '8.6' or header != '8.6':
|
|
exit(1)
|