/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_configdialog.py | 940 d.bindingslist.selection_set(0) 948 d.bindingslist.selection_set(1) 985 d.bindingslist.selection_set(0) 1128 b.selection_set(1) 1136 b.selection_set(2) 1351 h.selection_set(0) 1393 d.helplist.selection_set(0) 1420 d.helplist.selection_set(0)
|
/external/python/cpython3/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 1679 self.assertRaises(tkinter.TclError, self.tv.selection_set, 'none') 1691 self.tv.selection_set(c1, item2) 1693 self.tv.selection_set(c2) 1718 self.tv.selection_set('with spaces') 1722 self.tv.selection_set('{brace') 1726 self.tv.selection_set('unicode\u20ac') 1730 self.tv.selection_set(b'bytes\xe2\x82\xac') 1733 self.tv.selection_set() 1737 self.tv.selection_set((c1, item2))
|
/external/python/cpython3/Lib/idlelib/ |
D | scrolledlist.py | 116 self.listbox.selection_set(index)
|
D | configdialog.py | 304 self.extension_list.selection_set(0)
|
/external/python/cpython2/Lib/idlelib/ |
D | ScrolledList.py | 112 self.listbox.selection_set(index)
|
D | configDialog.py | 1268 self.extension_list.selection_set(0)
|
/external/python/cpython2/Lib/lib-tk/test/test_ttk/ |
D | test_widgets.py | 1500 self.assertRaises(tkinter.TclError, self.tv.selection_set, 'none') 1512 self.tv.selection_set((c1, item2)) 1514 self.tv.selection_set(c2) 1533 self.tv.selection_set('with spaces') 1537 self.tv.selection_set('{brace') 1542 self.tv.selection_set(u(r'unicode\u20ac')) 1546 self.tv.selection_set('bytes\xe2\x82\xac')
|
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
D | test_widgets.py | 805 lb.selection_set(2, 4) 806 lb.selection_set(6)
|
/external/python/cpython3/Lib/tkinter/test/test_tkinter/ |
D | test_widgets.py | 892 lb.selection_set(2, 4) 893 lb.selection_set(6)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0a3.rst | 154 Methods selection_set(), selection_add(), selection_remove() and
|
D | 3.8.0a1.rst | 6151 deprecated in 3.6. Use specialized methods like `selection_set` for
|
/external/python/cpython3/Lib/tkinter/ |
D | tix.py | 1042 def selection_set(self, first, last=None): member in HList 1499 def selection_set(self, first, last=None): member in TList
|
D | ttk.py | 1437 def selection_set(self, *items): member in Treeview
|
D | __init__.py | 3234 def selection_set(self, first, last=None): member in Listbox 3239 select_set = selection_set
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tix.py | 1044 def selection_set(self, first, last=None): member in HList 1502 def selection_set(self, first, last=None): member in TList
|
D | ttk.py | 1402 def selection_set(self, items): member in Treeview
|
D | Tkinter.py | 2672 def selection_set(self, first, last=None): member in Listbox 2676 select_set = selection_set
|
/external/python/cpython2/Doc/library/ |
D | ttk.rst | 1079 .. method:: selection_set(items)
|
/external/python/cpython3/Doc/library/ |
D | tkinter.ttk.rst | 1187 .. method:: selection_set(*items)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.8.rst | 1888 specialized methods like :meth:`~tkinter.ttk.Treeview.selection_set` for
|