Return the value of the variable as a float.
(self)
| 614 | Variable.__init__(self, master, value, name) |
| 615 | |
| 616 | def get(self): |
| 617 | """Return the value of the variable as a float.""" |
| 618 | return self._tk.getdouble(self._tk.globalgetvar(self._name)) |
| 619 | |
| 620 | |
| 621 | class BooleanVar(Variable): |
nothing calls this directly
no test coverage detected