(self, text, *ignored)
| 255 | return [] |
| 256 | |
| 257 | def completenames(self, text, *ignored): |
| 258 | dotext = 'do_'+text |
| 259 | return [a[3:] for a in self.get_names() if a.startswith(dotext)] |
| 260 | |
| 261 | def complete(self, text, state): |
| 262 | """Return the next possible completion for 'text'. |
no test coverage detected