mirror of
https://github.com/actions/python-versions.git
synced 2025-12-14 22:46:43 +00:00
Check tcltk for any platform and version
This commit is contained in:
10
tests/sources/tcltk.py
Normal file
10
tests/sources/tcltk.py
Normal file
@@ -0,0 +1,10 @@
|
||||
import tkinter
|
||||
import _tkinter
|
||||
|
||||
header = _tkinter.TK_VERSION
|
||||
lib = tkinter.Tk().getvar('tk_version')
|
||||
|
||||
if lib != header:
|
||||
print('header version=' + header)
|
||||
print('lib version=' + lib)
|
||||
exit(1)
|
||||
Reference in New Issue
Block a user