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

Method config

Lib/tkinter/font.py:146–153  ·  view source on GitHub ↗

Modify font attributes

(self, **options)

Source from the content-addressed store, hash-verified

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

Callers 15

__init__Method · 0.45
__init__Method · 0.45
font.pyFile · 0.45
show_windowMethod · 0.45
set_labelMethod · 0.45
create_page_fontMethod · 0.45
extension_selectedMethod · 0.45
__init__Method · 0.45
_configure_interiorMethod · 0.45
init_widgetsMethod · 0.45
update_colorsMethod · 0.45

Calls 4

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

Tested by 5

runFunction · 0.36
assert_state_disabledMethod · 0.36
get_widthMethod · 0.36
notifyRunningMethod · 0.36
notifyStoppedMethod · 0.36