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

Method configure

Lib/tkinter/ttk.py:357–367  ·  view source on GitHub ↗

Query or sets the default value of the specified option(s) in style. Each key in kw is an option and each value is either a string or a sequence identifying the value for that option.

(self, style, query_opt=None, **kw)

Source from the content-addressed store, hash-verified

355
356
357 def configure(self, style, query_opt=None, **kw):
358 """Query or sets the default value of the specified option(s) in
359 style.
360
361 Each key in kw is an option and each value is either a string or
362 a sequence identifying the value for that option."""
363 if query_opt is not None:
364 kw[query_opt] = None
365 result = _val_or_dict(self.tk, kw, self._name, "configure", style)
366 if result or query_opt:
367 return result
368
369
370 def map(self, style, query_opt=None, **kw):

Callers 3

bodyMethod · 0.45
__setitem__Method · 0.45
configureMethod · 0.45

Calls 1

_val_or_dictFunction · 0.85

Tested by

no test coverage detected