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

Method entrycget

Lib/tkinter/__init__.py:3570–3572  ·  view source on GitHub ↗

Return the resource value of a menu item for OPTION at INDEX.

(self, index, option)

Source from the content-addressed store, hash-verified

3568 self.tk.call(self._w, 'delete', index1, index2)
3569
3570 def entrycget(self, index, option):
3571 """Return the resource value of a menu item for OPTION at INDEX."""
3572 return self.tk.call(self._w, 'entrycget', index, '-' + option)
3573
3574 def entryconfigure(self, index, cnf=None, **kw):
3575 """Configure a menu item at INDEX."""

Callers 1

deleteMethod · 0.95

Calls 1

callMethod · 0.45

Tested by

no test coverage detected