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

Method image_configure

Lib/tkinter/__init__.py:3948–3950  ·  view source on GitHub ↗

Configure an embedded image at INDEX.

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

Source from the content-addressed store, hash-verified

3946 return self.tk.call(self._w, "image", "cget", index, option)
3947
3948 def image_configure(self, index, cnf=None, **kw):
3949 """Configure an embedded image at INDEX."""
3950 return self._configure(('image', 'configure', index), cnf, kw)
3951
3952 def image_create(self, index, cnf={}, **kw):
3953 """Create an embedded image at INDEX."""

Callers

nothing calls this directly

Calls 1

_configureMethod · 0.45

Tested by

no test coverage detected