MCPcopy Index your code
hub / github.com/python/cpython / _getconfigure

Method _getconfigure

Lib/tkinter/__init__.py:1817–1823  ·  view source on GitHub ↗

Call Tcl configure command and return the result as a dict.

(self, *args)

Source from the content-addressed store, hash-verified

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."""
1819 cnf = {}
1820 for x in self.tk.splitlist(self.tk.call(*args)):
1821 x = self.tk.splitlist(x)
1822 cnf[x[0][1:]] = (x[0][1:],) + x[1:]
1823 return cnf
1824
1825 def _getconfigure1(self, *args):
1826 x = self.tk.splitlist(self.tk.call(*args))

Callers 3

tk_busy_configureMethod · 0.95
_configureMethod · 0.95
paneconfigureMethod · 0.80

Calls 2

splitlistMethod · 0.80
callMethod · 0.45

Tested by

no test coverage detected