Searched refs:_val_or_dict (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/tkinter/test/test_ttk/ |
D | test_functions.py | 409 self.assertEqual(ttk._val_or_dict(tk, {}, '-test:3'), 411 self.assertEqual(ttk._val_or_dict(tk, {}, ('-test', 3)), 414 self.assertEqual(ttk._val_or_dict(tk, {'test': None}, 'x:y'), 417 self.assertEqual(ttk._val_or_dict(tk, {'test': 3}, 'x:y'),
|
/external/python/cpython2/Lib/lib-tk/test/test_ttk/ |
D | test_functions.py | 410 self.assertEqual(ttk._val_or_dict(tk, {}, '-test:3'), 412 self.assertEqual(ttk._val_or_dict(tk, {}, ('-test', 3)), 415 self.assertEqual(ttk._val_or_dict(tk, {'test': None}, 'x:y'), 418 self.assertEqual(ttk._val_or_dict(tk, {'test': 3}, 'x:y'),
|
/external/python/cpython2/Lib/lib-tk/ |
D | ttk.py | 290 def _val_or_dict(tk, options, *args): function 386 return _val_or_dict(self.tk, kw, self._name, "configure", style) 899 return _val_or_dict(self.tk, kw, self._w, "tab", tab_id) 976 return _val_or_dict(self.tk, kw, self._w, "pane", pane) 1215 return _val_or_dict(self.tk, kw, self._w, "column", column) 1274 return _val_or_dict(self.tk, kw, self._w, 'heading', column) 1353 return _val_or_dict(self.tk, kw, self._w, "item", item) 1453 return _val_or_dict(self.tk, kw, self._w, "tag", "configure",
|
/external/python/cpython3/Lib/tkinter/ |
D | ttk.py | 290 def _val_or_dict(tk, options, *args): function 386 result = _val_or_dict(self.tk, kw, self._name, "configure", style) 903 return _val_or_dict(self.tk, kw, self._w, "tab", tab_id) 980 return _val_or_dict(self.tk, kw, self._w, "pane", pane) 1246 return _val_or_dict(self.tk, kw, self._w, "column", column) 1305 return _val_or_dict(self.tk, kw, self._w, 'heading', column) 1384 return _val_or_dict(self.tk, kw, self._w, "item", item) 1506 return _val_or_dict(self.tk, kw, self._w, "tag", "configure",
|