Searched refs:_format_layoutlist (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/test/ |
D | test_ttk_textonly.py | 232 return ttk._format_layoutlist( 255 self.assertEqual(ttk._format_layoutlist([])[0], '') 260 ttk._format_layoutlist, [('a', 'b')]) 262 smallest = ttk._format_layoutlist([('a', None)], indent=0) 264 ttk._format_layoutlist([('a', '')], indent=0)) 277 self.assertRaises(ValueError, ttk._format_layoutlist, 280 self.assertRaises(AttributeError, ttk._format_layoutlist, 283 self.assertRaises(ValueError, ttk._format_layoutlist,
|
/third_party/python/Lib/tkinter/ |
D | ttk.py | 150 def _format_layoutlist(layout, indent=0, indent_size=2): function 189 newscript, indent = _format_layoutlist(opts['children'], indent, 220 s, _ = _format_layoutlist(opts['layout']) 448 lspec = _format_layoutlist(layoutspec)[0]
|