92
91
def parse_line(self, line):
93
92
m = self.usage_exp.match(line)
99
96
self.command_usage.append((self.command,self.usage,self.descr))
100
97
self.all_commands.append(self.command)
102
99
self.command = m.groups()[0]
107
104
m = self.descr_exp.match(line)