MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / configure

Method configure

tools/python-3.11.9-amd64/Lib/tkinter/__init__.py:4116–4123  ·  view source on GitHub ↗

Configure the image.

(self, **kw)

Source from the content-addressed store, hash-verified

4114 return self.tk.call(self.name, 'configure', '-'+key)
4115
4116 def configure(self, **kw):
4117 """Configure the image."""
4118 res = ()
4119 for k, v in _cnfmerge(kw).items():
4120 if v is not None:
4121 if k[-1] == '_': k = k[:-1]
4122 res = res + ('-'+k, v)
4123 self.tk.call((self.name, 'config') + res)
4124
4125 config = configure
4126

Callers

nothing calls this directly

Calls 3

_cnfmergeFunction · 0.85
callMethod · 0.80
itemsMethod · 0.45

Tested by

no test coverage detected