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

Method window_configure

Lib/tkinter/__init__.py:4144–4146  ·  view source on GitHub ↗

Configure an embedded window at INDEX.

(self, index, cnf=None, **kw)

Source from the content-addressed store, hash-verified

4142 return self.tk.call(self._w, 'window', 'cget', index, option)
4143
4144 def window_configure(self, index, cnf=None, **kw):
4145 """Configure an embedded window at INDEX."""
4146 return self._configure(('window', 'configure', index), cnf, kw)
4147
4148 window_config = window_configure
4149

Callers

nothing calls this directly

Calls 1

_configureMethod · 0.45

Tested by

no test coverage detected