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