(self)
| 289 | return None |
| 290 | |
| 291 | def get_names(self): |
| 292 | # This method used to pull in base class attributes |
| 293 | # at a time dir() didn't do it yet. |
| 294 | return dir(self.__class__) |
| 295 | |
| 296 | def complete_help(self, *args): |
| 297 | commands = set(self.completenames(*args)) |
no outgoing calls
no test coverage detected