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

Method configure

Lib/tkinter/__init__.py:4378–4385  ·  view source on GitHub ↗

Configure the image.

(self, **kw)

Source from the content-addressed store, hash-verified

4376 __iter__ = None # prevent using __getitem__ for iteration
4377
4378 def configure(self, **kw):
4379 """Configure the image."""
4380 res = ()
4381 for k, v in _cnfmerge(kw).items():
4382 if v is not None:
4383 if k[-1] == '_': k = k[:-1]
4384 res = res + ('-'+k, v)
4385 self.tk.call((self.name, 'config') + res)
4386
4387 config = configure
4388

Callers

nothing calls this directly

Calls 3

_cnfmergeFunction · 0.85
itemsMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected