92
68
def parse_line(self, line):
93
69
m = self.usage_exp.match(line)
97
75
self.command_usage.append((self.command,self.usage,self.descr))
98
76
self.all_commands.append(self.command)
100
78
self.command = m.groups()[0]
105
83
m = self.descr_exp.match(line)