Searched refs:showtip (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_tooltip.py | 61 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/ |
D | tooltip.py | 26 def showtip(self): member in TooltipBase 117 self.showtip() 127 self.showtip)
|
D | calltip_w.py | 59 def showtip(self, text, parenleft, parenright): member in CalltipWindow 76 super(CalltipWindow, self).showtip() 186 calltip.showtip("(s='Hello world')", "insert", "end")
|
D | calltip.py | 74 self.active_calltip.showtip(argspec, sur_paren[0], sur_paren[1])
|
/external/python/cpython2/Lib/idlelib/ |
D | ToolTip.py | 28 self.id = self.button.after(1500, self.showtip) 36 def showtip(self): member in ToolTipBase
|
D | CallTipWindow.py | 47 def showtip(self, text, parenleft, parenright): member in CallTip 151 calltip.showtip("(s=Hello world)", "insert", "end")
|
D | CallTips.py | 82 self.calltip.showtip(arg_text, sur_paren[0], sur_paren[1])
|