Searched refs:splitlist (Results 1 – 15 of 15) sorted by relevance
76 font = tk.splitlist(tk.call("font", "actual", font))86 if self.name not in tk.splitlist(tk.call("font", "names")):97 self._split = tk.splitlist191 return root.tk.splitlist(root.tk.call("font", "families", *args))198 return root.tk.splitlist(root.tk.call("font", "names"))
131 t = tk.splitlist(v)452 if self._tk.splitlist(ca)[0] == cbname:463 splitlist = self._tk.splitlist464 return [(splitlist(k), v) for k, v in map(splitlist,465 splitlist(self._tk.call('trace', 'info', 'variable', self._name)))]497 cbname = self._tk.splitlist(cbname)[0]499 if self._tk.splitlist(ca)[0] == cbname:515 return [self._tk.splitlist(x) for x in self._tk.splitlist(872 script = self.tk.splitlist(data)[0]1078 for child in self.tk.splitlist([all …]
264 ltuple = tk.splitlist(ltuple)395 return _list_from_statespec(self.tk.splitlist(result))398 return {k: _list_from_statespec(self.tk.splitlist(v))466 return tuple(n.lstrip('-') for n in self.tk.splitlist(472 return tuple(o.lstrip('-') for o in self.tk.splitlist(507 return self.tk.splitlist(self.tk.call(self._name, "theme", "names"))588 return self.tk.splitlist(str(self.tk.call(self._w, "state", statespec)))901 return self.tk.splitlist(self.tk.call(self._w, "tabs") or ())1219 return self.tk.splitlist(1422 return self.tk.splitlist(self.tk.call(self._w, "selection"))[all …]
252 y = self.tk.splitlist(x)268 self.tk.splitlist(379 return self.tk.splitlist(x)974 return self.tk.splitlist(c)1002 return self.tk.splitlist(c)1118 names = self.tk.splitlist(self.tk.call(self._w, 'pages'))1164 names = self.tk.splitlist(self.tk.call(self._w, 'pages'))1246 names = self.tk.splitlist(self.tk.call(self._w, 'panes'))1481 return self.tk.splitlist(c)1587 return self.tk.splitlist(self.tk.call(self._w, 'getselection', mode))[all …]
348 return self._fixresult(widget, widget.tk.splitlist(result))
80 (script, _) = root.tk.splitlist(root.tk.call('after', 'info', timer1))95 (script, _) = root.tk.splitlist(root.tk.call('after', 'info', timer1))118 (script, _) = root.tk.splitlist(root.tk.call('after', 'info', idle1))133 (script, _) = root.tk.splitlist(root.tk.call('after', 'info', idle1))155 (script, _) = root.tk.splitlist(root.tk.call('after', 'info', timer1))170 (script, _) = root.tk.splitlist(root.tk.call('after', 'info', idle1))
101 self.assertEqual(self.root.splitlist(actual), expected)
570 splitlist = self.interp.tk.splitlist572 self.assertRaises(TypeError, splitlist)573 self.assertRaises(TypeError, splitlist, 'a', 'b')574 self.assertRaises(TypeError, splitlist, 2)616 self.assertEqual(splitlist(arg), res,618 self.assertRaises(TclError, splitlist, '{')784 self.assertRaises(OverflowError, tk.splitlist, value)
12 def splitlist(self, arg): member in MockTkApp
320 Fixed memory leaks in Tkinter's methods splitlist() and split() when pass a
632 Fixed memory leaks in Tkinter's methods splitlist() and split() when pass a
1399 of the ``splitlist()`` method which has more consistent and predicable
1612 self.tv.item(item, values=self.root.splitlist(self.tv.item(item, values=None)))
882 favour of the ``splitlist()`` method which has more consistent and
2907 - Issue #19020: Tkinter now uses splitlist() instead of split() in configure4149 - Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_Obj