Internal function.
(self, string)
| 1621 | self.tk.quit() |
| 1622 | |
| 1623 | def _getints(self, string): |
| 1624 | """Internal function.""" |
| 1625 | if string: |
| 1626 | return tuple(map(self.tk.getint, self.tk.splitlist(string))) |
| 1627 | |
| 1628 | def _getdoubles(self, string): |
| 1629 | """Internal function.""" |
no test coverage detected