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

Method image_configure

Lib/tkinter/__init__.py:4030–4036  ·  view source on GitHub ↗

Query or modify the configuration options of an embedded image at INDEX. Similar to configure() except that it applies to the specified embedded image.

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

Source from the content-addressed store, hash-verified

4028 return self.tk.call(self._w, "image", "cget", index, option)
4029
4030 def image_configure(self, index, cnf=None, **kw):
4031 """Query or modify the configuration options of an embedded image at INDEX.
4032
4033 Similar to configure() except that it applies to the specified
4034 embedded image.
4035 """
4036 return self._configure(('image', 'configure', index), cnf, kw)
4037
4038 def image_create(self, index, cnf={}, **kw):
4039 """Create an embedded image at INDEX."""

Callers

nothing calls this directly

Calls 1

_configureMethod · 0.45

Tested by

no test coverage detected