(self, line)
| 966 | return True |
| 967 | |
| 968 | def precmd(self, line): |
| 969 | words = line.split() |
| 970 | if words and words[0] in self.aliases: |
| 971 | words[0] = self.aliases[words[0]] |
| 972 | line = ' '.join(words) |
| 973 | return line |
| 974 | |
| 975 | def help(self, arg): |
| 976 | if arg in self.aliases: |