Internal function.
(self)
| 1782 | return (e,) |
| 1783 | |
| 1784 | def _report_exception(self): |
| 1785 | """Internal function.""" |
| 1786 | exc, val, tb = sys.exc_info() |
| 1787 | root = self._root() |
| 1788 | root.report_callback_exception(exc, val, tb) |
| 1789 | |
| 1790 | def _getconfigure(self, *args): |
| 1791 | """Call Tcl configure command and return the result as a dict.""" |
no test coverage detected