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