Searched refs:acw (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_autocomplete_w.py | 7 import idlelib.autocomplete_w as acw namespace 18 cls.acw = acw.AutoCompleteWindow(cls.text, tags=None) 22 del cls.text, cls.acw 28 self.assertEqual(self.acw.widget, self.text)
|
H A D | test_autocomplete.py | 11 import idlelib.autocomplete_w as acw namespace 52 self.assertIsInstance(testwin, acw.AutoCompleteWindow)
|
/third_party/python/Lib/idlelib/ |
H A D | autocomplete_w.py | 185 self.autocompletewindow = acw = Toplevel(self.widget) 186 acw.withdraw() 187 acw.wm_overrideredirect(1) 190 acw.tk.call("::tk::unsupported::MacWindowStyle", "style", acw._w, 194 self.scrollbar = scrollbar = Scrollbar(acw, orient=VERTICAL) 195 self.listbox = listbox = Listbox(acw, yscrollcommand=scrollbar.set, 204 #acw.update_idletasks() # Need for tk8.6.8 on macOS: #40128. 205 acw.lift() # work around bug in Tk 8.5.18+ (issue #24570) 212 self.hideaid = acw [all...] |
Completed in 2 milliseconds