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

Method configure

Lib/tkinter/__init__.py:1815–1822  ·  view source on GitHub ↗

Configure resources of a widget. The values for resources are specified as keyword arguments. To get an overview about the allowed keyword arguments call the method keys.

(self, cnf=None, **kw)

Source from the content-addressed store, hash-verified

1813 # These used to be defined in Widget:
1814
1815 def configure(self, cnf=None, **kw):
1816 """Configure resources of a widget.
1817
1818 The values for resources are specified as keyword
1819 arguments. To get an overview about
1820 the allowed keyword arguments call the method keys.
1821 """
1822 return self._configure('configure', cnf, kw)
1823
1824 config = configure
1825

Callers 3

__setitem__Method · 0.95
__init__Method · 0.45
_testFunction · 0.45

Calls 1

_configureMethod · 0.95

Tested by

no test coverage detected