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

Method unschedule

Lib/idlelib/tooltip.py:129–134  ·  view source on GitHub ↗

cancel the future display of the tooltip

(self)

Source from the content-addressed store, hash-verified

127 self.showtip)
128
129 def unschedule(self):
130 """cancel the future display of the tooltip"""
131 after_id = self._after_id
132 self._after_id = None
133 if after_id:
134 self.anchor_widget.after_cancel(after_id)
135
136 def hidetip(self):
137 """hide the tooltip"""

Callers 2

scheduleMethod · 0.95
hidetipMethod · 0.95

Calls 1

after_cancelMethod · 0.80

Tested by

no test coverage detected