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

Method config

Lib/tkinter/font.py:145–152  ·  view source on GitHub ↗

Modify font attributes

(self, **options)

Source from the content-addressed store, hash-verified

143 return self._call("font", "config", self.name, "-"+option)
144
145 def config(self, **options):
146 "Modify font attributes"
147 if options:
148 self._call("font", "config", self.name,
149 *self._set(options))
150 else:
151 return self._mkdict(
152 self._split(self._call("font", "config", self.name)))
153
154 configure = config
155

Callers 3

__init__Method · 0.80
__init__Method · 0.80
font.pyFile · 0.80

Calls 4

_setMethod · 0.95
_mkdictMethod · 0.95
_splitMethod · 0.80
_callMethod · 0.45

Tested by

no test coverage detected