MCPcopy Index your code
hub / github.com/RustPython/RustPython / configure

Method configure

Lib/tkinter/__init__.py:4255–4262  ·  view source on GitHub ↗

Configure the image.

(self, **kw)

Source from the content-addressed store, hash-verified

4253 return self.tk.call(self.name, 'configure', '-'+key)
4254
4255 def configure(self, **kw):
4256 """Configure the image."""
4257 res = ()
4258 for k, v in _cnfmerge(kw).items():
4259 if v is not None:
4260 if k[-1] == '_': k = k[:-1]
4261 res = res + ('-'+k, v)
4262 self.tk.call((self.name, 'config') + res)
4263
4264 config = configure
4265

Callers

nothing calls this directly

Calls 3

_cnfmergeFunction · 0.85
itemsMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected