Internal function.
(self, string)
| 1613 | return tuple(map(self.tk.getdouble, self.tk.splitlist(string))) |
| 1614 | |
| 1615 | def _getboolean(self, string): |
| 1616 | """Internal function.""" |
| 1617 | if string: |
| 1618 | return self.tk.getboolean(string) |
| 1619 | |
| 1620 | def _displayof(self, displayof): |
| 1621 | """Internal function.""" |
no test coverage detected