(self, event)
| 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 |
| 319 | cursel = int(self.listbox.curselection()[0]) |
| 320 | self._change_start(self.completions[cursel]) |
| 321 | self.hide_window() |
| 322 | |
| 323 | def keypress_event(self, event): |
| 324 | if not self.is_active(): |
nothing calls this directly
no test coverage detected