(self, text, *ignored)
| 245 | return [] |
| 246 | |
| 247 | def completenames(self, text, *ignored): |
| 248 | dotext = 'do_'+text |
| 249 | return [a[3:] for a in self.get_names() if a.startswith(dotext)] |
| 250 | |
| 251 | def complete(self, text, state): |
| 252 | """Return the next possible completion for 'text'. |
no test coverage detected