Searched refs:tcl_version (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_tcl.py | 20 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) variable 129 if tcl_version >= (8, 4): # wideInt was added in Tcl 8.4 143 if tcl_version >= (8, 5): 147 if tcl_version < (8, 5): # bignum was added in Tcl 8.5 307 if tcl_version >= (8, 5): # bignum was added in Tcl 8.5 338 if tcl_version >= (8, 5): # bignum was added in Tcl 8.5 369 if tcl_version >= (8, 5): # bignum was added in Tcl 8.5 409 if tcl_version >= (8, 5): # bignum was added in Tcl 8.5 412 @unittest.skipUnless(tcl_version >= (8, 5), 'requires Tcl version >= 8.5') 444 if tcl_version < (8, 5): # bignum was added in Tcl 8.5 [all …]
|
/external/python/cpython2/Lib/lib-tk/test/test_ttk/ |
D | support.py | 54 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.'))) variable 57 return unittest.skipUnless(tcl_version >= version,
|
D | test_widgets.py | 9 from support import (AbstractTkTest, tcl_version, get_tk_patchlevel, 482 () if tcl_version < (8, 5) else '') 489 self.checkParam(self.combo, 'values', () if tcl_version < (8, 5) else '') 1130 self.checkParam(widget, 'columns', () if tcl_version < (8, 5) else '')
|
/external/python/cpython2/Lib/lib-tk/test/ |
D | widget_tests.py | 7 from test_ttk.support import (AbstractTkTest, tcl_version, requires_tcl, 43 if not self._stringify and self.wantobjects and tcl_version >= (8, 6): 143 if tcl_version >= (8, 5): 202 if tcl_version < (8, 6):
|
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
D | test_widgets.py | 8 from test_ttk.support import (tcl_version, requires_tcl, get_tk_patchlevel, 489 if tcl_version < (8, 5): 543 keep_orig=tcl_version >= (8, 5)) 576 if tcl_version < (8, 5): 594 keep_orig=tcl_version >= (8, 5)) 613 if tcl_version < (8, 5):
|
D | test_geometry_managers.py | 7 from test_ttk.support import pixels_conv, tcl_version, requires_tcl 298 if tcl_version >= (8, 5): 620 if tcl_version >= (8, 5): 627 if tcl_version >= (8, 5): 676 if tcl_version >= (8, 5): 683 if tcl_version >= (8, 5):
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tkinter.py | 1840 tcl_version = str(self.tk.getvar('tcl_version')) 1841 if tcl_version != _tkinter.TCL_VERSION: 1844 % (_tkinter.TCL_VERSION, tcl_version)
|