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

Method configure

Lib/tkinter/__init__.py:1842–1855  ·  view source on GitHub ↗

Query or modify the configuration options of the widget. If no arguments are specified, return a dictionary describing all of the available options for the widget. If an option name is specified, then return a tuple describing the one named option. If one o

(self, cnf=None, **kw)

Source from the content-addressed store, hash-verified

1840 # These used to be defined in Widget:
1841
1842 def configure(self, cnf=None, **kw):
1843 """Query or modify the configuration options of the widget.
1844
1845 If no arguments are specified, return a dictionary describing
1846 all of the available options for the widget.
1847
1848 If an option name is specified, then return a tuple describing
1849 the one named option.
1850
1851 If one or more keyword arguments are specified or a dictionary
1852 is specified, then modify the widget option(s) to have the given
1853 value(s).
1854 """
1855 return self._configure('configure', cnf, kw)
1856
1857 config = configure
1858

Callers 3

__setitem__Method · 0.95
__init__Method · 0.45
_testFunction · 0.45

Calls 1

_configureMethod · 0.95

Tested by

no test coverage detected