Message401757
Note that _tkinter.TK_VERSION and _tkinter.TK_VERSION are simply "8.6", not enough to differentiate between patch versions. The best way to get this info appears to be tk.call("info", "patchlevel").
Specifically I suggest:
TK_VERSION = tuple(map(int, tk.call("info", "patchlevel").split(".")))
...
if (8, 6, 8) <= TK_VERSION < (8, 6, 10):
... |
|
Date |
User |
Action |
Args |
2021-09-14 06:25:49 | taleinat | set | recipients:
+ taleinat, terry.reedy, ronaldoussoren, ned.deily, lukasz.langa, pablogsal, miss-islington, darthur90, thsubaku9 |
2021-09-14 06:25:49 | taleinat | set | messageid: <1631600749.64.0.212603285055.issue40128@roundup.psfhosted.org> |
2021-09-14 06:25:49 | taleinat | link | issue40128 messages |
2021-09-14 06:25:49 | taleinat | create | |
|