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

Method try_open_calltip_event

Lib/idlelib/calltip.py:46–51  ·  view source on GitHub ↗

Happens when it would be nice to open a calltip, but not really necessary, for example after an opening bracket, so function calls won't be made.

(self, event)

Source from the content-addressed store, hash-verified

44 return "break"
45
46 def try_open_calltip_event(self, event):
47 """Happens when it would be nice to open a calltip, but not really
48 necessary, for example after an opening bracket, so function calls
49 won't be made.
50 """
51 self.open_calltip(False)
52
53 def refresh_calltip_event(self, event):
54 if self.active_calltip and self.active_calltip.tipwindow:

Callers

nothing calls this directly

Calls 1

open_calltipMethod · 0.95

Tested by

no test coverage detected