Searched refs:_splitdict (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/lib-tk/ |
D | ttk.py | 29 from Tkinter import _flatten, _join, _stringify, _splitdict 304 return _splitdict(tk, res, conv=_tclobj_to_py) 401 return _splitdict( 1431 return _splitdict(self.tk, res,
|
D | Tkinter.py | 129 def _splitdict(tk, v, cut_minus=True, conv=None): function 1431 return _splitdict( 1960 d = _splitdict(self.tk, self.tk.call('pack', 'info', self._w)) 2005 d = _splitdict(self.tk, self.tk.call('place', 'info', self._w)) 2048 d = _splitdict(self.tk, self.tk.call('grid', 'info', self._w))
|
/external/python/cpython3/Lib/tkinter/ |
D | ttk.py | 29 from tkinter import _flatten, _join, _stringify, _splitdict 303 return _splitdict(tk, res, conv=_tclobj_to_py) 404 for k, v in _splitdict(self.tk, result).items()} 1466 return _splitdict(self.tk, res,
|
D | __init__.py | 123 def _splitdict(tk, v, cut_minus=True, conv=None): function 1758 return _splitdict( 2403 d = _splitdict(self.tk, self.tk.call('pack', 'info', self._w)) 2455 d = _splitdict(self.tk, self.tk.call('place', 'info', self._w)) 2506 d = _splitdict(self.tk, self.tk.call('grid', 'info', self._w))
|
/external/python/cpython2/Lib/test/ |
D | test_tcl.py | 630 splitdict = tkinter._splitdict
|
/external/python/cpython3/Lib/test/ |
D | test_tcl.py | 628 splitdict = tkinter._splitdict
|