Searched refs:tcl_version (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Lib/tkinter/test/ |
H A D | support.py | 82 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) variable 86 return unittest.skipUnless(tcl_version >= version,
|
H A D | widget_tests.py | 5 from tkinter.test.support import (AbstractTkTest, tcl_version, namespace 26 if not self._stringify and self.wantobjects and tcl_version >= (8, 6): 160 if tcl_version < (8, 6):
|
/third_party/python/Lib/test/ |
H A D | test_tcl.py | 24 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) variable 151 i if tcl_version < (9, 0) else int('%o' % i)) 587 % (self.wantobjects, tcl_version, tk_patchlevel))
|
/third_party/python/Lib/tkinter/ |
H A D | __init__.py | 2346 # Under unknown circumstances, tcl_version gets coerced to float 2347 tcl_version = str(self.tk.getvar('tcl_version')) 2348 if tcl_version != _tkinter.TCL_VERSION: 2350 % (_tkinter.TCL_VERSION, tcl_version))
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
H A D | test_widgets.py | 8 from tkinter.test.support import (AbstractTkTest, tcl_version, get_tk_patchlevel, namespace 1531 if tcl_version >= (8, 6):
|
Completed in 12 milliseconds