Searched refs:selop (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/tkinter/ |
D | ttk.py | 1426 def selection(self, selop=_sentinel, items=None): argument 1428 if selop is _sentinel: 1429 selop = None 1430 elif selop is None: 1436 elif selop in ('set', 'add', 'remove', 'toggle'): 1441 "use selection_%s() instead" % (selop,), 1445 return self.tk.splitlist(self.tk.call(self._w, "selection", selop, items)) 1448 def _selection(self, selop, items): argument 1452 self.tk.call(self._w, "selection", selop, items)
|
/external/python/cpython2/Lib/lib-tk/ |
D | ttk.py | 1395 def selection(self, selop=None, items=None): argument 1399 return self.tk.splitlist(self.tk.call(self._w, "selection", selop, items))
|
/external/python/cpython2/Doc/library/ |
D | ttk.rst | 1073 .. method:: selection([selop=None[, items=None]]) 1075 If *selop* is not specified, returns selected items. Otherwise, it will
|
/external/python/cpython3/Doc/library/ |
D | tkinter.ttk.rst | 1178 .. method:: selection(selop=None, items=None) 1180 If *selop* is not specified, returns selected items. Otherwise, it will
|