Return a list of all resource names of this widget.
(self)
| 1732 | self.configure({key: value}) |
| 1733 | |
| 1734 | def keys(self): |
| 1735 | """Return a list of all resource names of this widget.""" |
| 1736 | splitlist = self.tk.splitlist |
| 1737 | return [splitlist(x)[0][1:] for x in |
| 1738 | splitlist(self.tk.call(self._w, 'configure'))] |
| 1739 | |
| 1740 | def __str__(self): |
| 1741 | """Return the window path name of this widget.""" |