Internal function.
(self)
| 1809 | return (e,) |
| 1810 | |
| 1811 | def _report_exception(self): |
| 1812 | """Internal function.""" |
| 1813 | exc, val, tb = sys.exc_info() |
| 1814 | root = self._root() |
| 1815 | root.report_callback_exception(exc, val, tb) |
| 1816 | |
| 1817 | def _getconfigure(self, *args): |
| 1818 | """Call Tcl configure command and return the result as a dict.""" |
no test coverage detected