Return a list of all resource names of this widget.
(self)
| 1833 | self.configure({key: value}) |
| 1834 | |
| 1835 | def keys(self): |
| 1836 | """Return a list of all resource names of this widget.""" |
| 1837 | splitlist = self.tk.splitlist |
| 1838 | return [splitlist(x)[0][1:] for x in |
| 1839 | splitlist(self.tk.call(self._w, 'configure'))] |
| 1840 | |
| 1841 | def __str__(self): |
| 1842 | """Return the window path name of this widget.""" |