Internal function.
(self, string)
| 1631 | return tuple(map(self.tk.getdouble, self.tk.splitlist(string))) |
| 1632 | |
| 1633 | def _getboolean(self, string): |
| 1634 | """Internal function.""" |
| 1635 | if string: |
| 1636 | return self.tk.getboolean(string) |
| 1637 | |
| 1638 | def _displayof(self, displayof): |
| 1639 | """Internal function.""" |
no test coverage detected