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

Method tk_popup

Lib/tkinter/__init__.py:3574–3576  ·  view source on GitHub ↗

Post the menu at position X,Y with entry ENTRY.

(self, x, y, entry="")

Source from the content-addressed store, hash-verified

3572 Widget.__init__(self, master, 'menu', cnf, kw)
3573
3574 def tk_popup(self, x, y, entry=""):
3575 """Post the menu at position X,Y with entry ENTRY."""
3576 self.tk.call('tk_popup', self._w, x, y, entry)
3577
3578 def activate(self, index):
3579 """Activate entry at INDEX."""

Callers 2

context_menu_eventMethod · 0.95
context_menu_eventMethod · 0.95

Calls 1

callMethod · 0.45

Tested by

no test coverage detected