Call Tcl configure command and return the result as a dict.
(self, *args)
| 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.""" |
| 1792 | cnf = {} |
| 1793 | for x in self.tk.splitlist(self.tk.call(*args)): |
| 1794 | x = self.tk.splitlist(x) |
| 1795 | cnf[x[0][1:]] = (x[0][1:],) + x[1:] |
| 1796 | return cnf |
| 1797 | |
| 1798 | def _getconfigure1(self, *args): |
| 1799 | x = self.tk.splitlist(self.tk.call(*args)) |
no test coverage detected