Home
last modified time | relevance | path

Searched refs:splitlist (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Lib/tkinter/
Dfont.py76 font = tk.splitlist(tk.call("font", "actual", font))
86 if self.name not in tk.splitlist(tk.call("font", "names")):
97 self._split = tk.splitlist
191 return root.tk.splitlist(root.tk.call("font", "families", *args))
198 return root.tk.splitlist(root.tk.call("font", "names"))
D__init__.py131 t = tk.splitlist(v)
452 if self._tk.splitlist(ca)[0] == cbname:
463 splitlist = self._tk.splitlist
464 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 …]
Dttk.py264 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 …]
Dtix.py252 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 …]
Dfiledialog.py348 return self._fixresult(widget, widget.tk.splitlist(result))
/third_party/python/Lib/tkinter/test/test_tkinter/
Dtest_misc.py80 (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))
Dtest_images.py101 self.assertEqual(self.root.splitlist(actual), expected)
/third_party/python/Lib/test/
Dtest_tcl.py570 splitlist = self.interp.tk.splitlist
572 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)
Dtest_ttk_textonly.py12 def splitlist(self, arg): member in MockTkApp
/third_party/python/Misc/NEWS.d/
D3.7.0a2.rst320 Fixed memory leaks in Tkinter's methods splitlist() and split() when pass a
D3.6.4rc1.rst632 Fixed memory leaks in Tkinter's methods splitlist() and split() when pass a
D3.9.0a1.rst1399 of the ``splitlist()`` method which has more consistent and predicable
/third_party/python/Lib/tkinter/test/test_ttk/
Dtest_widgets.py1612 self.tv.item(item, values=self.root.splitlist(self.tv.item(item, values=None)))
/third_party/python/Doc/whatsnew/
D3.9.rst882 favour of the ``splitlist()`` method which has more consistent and
/third_party/python/Misc/
DHISTORY2907 - Issue #19020: Tkinter now uses splitlist() instead of split() in configure
4149 - Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_Obj