(self, opt, value, values, parser)
| 763 | return tuple([self.check_value(opt, v) for v in value]) |
| 764 | |
| 765 | def process(self, opt, value, values, parser): |
| 766 | |
| 767 | # First, convert the value(s) to the right type. Howl if any |
| 768 | # value(s) are bogus. |
| 769 | value = self.convert_value(opt, value) |
| 770 | |
| 771 | # And then take whatever action is expected of us. |
| 772 | # This is a separate method to make life easier for |
| 773 | # subclasses to add new actions. |
| 774 | return self.take_action( |
| 775 | self.action, self.dest, opt, value, values, parser) |
| 776 | |
| 777 | def take_action(self, action, dest, opt, value, values, parser): |
| 778 | if action == "store": |
no test coverage detected