(self, event)
| 309 | self.hide_window() |
| 310 | |
| 311 | def listselect_event(self, event): |
| 312 | if self.is_active(): |
| 313 | self.userwantswindow = True |
| 314 | cursel = int(self.listbox.curselection()[0]) |
| 315 | self._change_start(self.completions[cursel]) |
| 316 | |
| 317 | def doubleclick_event(self, event): |
| 318 | # Put the selected completion in the text, and close the list |
nothing calls this directly
no test coverage detected