Internal function.
(self, string)
| 1603 | self.tk.quit() |
| 1604 | |
| 1605 | def _getints(self, string): |
| 1606 | """Internal function.""" |
| 1607 | if string: |
| 1608 | return tuple(map(self.tk.getint, self.tk.splitlist(string))) |
| 1609 | |
| 1610 | def _getdoubles(self, string): |
| 1611 | """Internal function.""" |
no outgoing calls
no test coverage detected