Exemplo n.º 1
0
 def _make_tk_calltip_window(self):
     return calltip_w.CallTip(self.text)
Exemplo n.º 2
0
 def _make_tk_calltip_window(self):
     # See __init__ for usage
     return calltip_w.CallTip(self.text)
Exemplo n.º 3
0
 def setUpClass(cls):
     requires('gui')
     cls.root = Tk()
     cls.root.withdraw()
     cls.text = Text(cls.root)
     cls.calltip = calltip_w.CallTip(cls.text)