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

Method entrycget

Lib/tkinter/__init__.py:3648–3650  ·  view source on GitHub ↗

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

(self, index, option)

Source from the content-addressed store, hash-verified

3646 self.tk.call(self._w, 'delete', index1, index2)
3647
3648 def entrycget(self, index, option):
3649 """Return the value of OPTION for a menu item at INDEX."""
3650 return self.tk.call(self._w, 'entrycget', index, '-' + option)
3651
3652 def entryconfigure(self, index, cnf=None, **kw):
3653 """Query or modify the configuration options of a menu item at INDEX.

Callers 7

deleteMethod · 0.95
test_entryconfigureMethod · 0.80
test_menuMethod · 0.80
ApplyKeybindingsMethod · 0.80

Calls 1

callMethod · 0.45

Tested by 5

test_entryconfigureMethod · 0.64
test_menuMethod · 0.64