Home
last modified time | relevance | path

Searched refs:showtip (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_tooltip.py61 tooltip.showtip()
72 tooltip.showtip()
79 tooltip.showtip()
82 tooltip.showtip()
89 tooltip.showtip()
96 tooltip.showtip = add_call_counting(tooltip.showtip)
102 self.assertGreater(len(tooltip.showtip.call_args_list), 0)
107 tooltip.showtip = add_call_counting(tooltip.showtip)
116 self.assertGreater(len(tooltip.showtip.call_args_list), 0)
121 tooltip.showtip = add_call_counting(tooltip.showtip)
[all …]
/external/python/cpython3/Lib/idlelib/
Dtooltip.py26 def showtip(self): member in TooltipBase
117 self.showtip()
127 self.showtip)
Dcalltip_w.py59 def showtip(self, text, parenleft, parenright): member in CalltipWindow
76 super(CalltipWindow, self).showtip()
186 calltip.showtip("(s='Hello world')", "insert", "end")
Dcalltip.py74 self.active_calltip.showtip(argspec, sur_paren[0], sur_paren[1])
/external/python/cpython2/Lib/idlelib/
DToolTip.py28 self.id = self.button.after(1500, self.showtip)
36 def showtip(self): member in ToolTipBase
DCallTipWindow.py47 def showtip(self, text, parenleft, parenright): member in CallTip
151 calltip.showtip("(s=Hello world)", "insert", "end")
DCallTips.py82 self.calltip.showtip(arg_text, sur_paren[0], sur_paren[1])