Return value of variable as string.
(self)
| 565 | Variable.__init__(self, master, value, name) |
| 566 | |
| 567 | def get(self): |
| 568 | """Return value of variable as string.""" |
| 569 | value = self._tk.globalgetvar(self._name) |
| 570 | if isinstance(value, str): |
| 571 | return value |
| 572 | return str(value) |
| 573 | |
| 574 | |
| 575 | class IntVar(Variable): |
nothing calls this directly
no test coverage detected