(self)
| 279 | return None |
| 280 | |
| 281 | def get_names(self): |
| 282 | # This method used to pull in base class attributes |
| 283 | # at a time dir() didn't do it yet. |
| 284 | return dir(self.__class__) |
| 285 | |
| 286 | def complete_help(self, *args): |
| 287 | commands = set(self.completenames(*args)) |
no outgoing calls
no test coverage detected