142
143
def _optparse_callback(self, option, opt, value, parser, evalue):
143
144
setattr(parser.values, option.dest, self.factory(evalue))
149
:return: an iterator of (name, short_name, argname, help)
151
return ((n, None, None, h) for n, h in self.choices)
147
155
"""Description of a command line option"""