(self, opt, value, values, parser)
| 773 | return tuple([self.check_value(opt, v) for v in value]) |
| 774 | |
| 775 | def process(self, opt, value, values, parser): |
| 776 | |
| 777 | # First, convert the value(s) to the right type. Howl if any |
| 778 | # value(s) are bogus. |
| 779 | value = self.convert_value(opt, value) |
| 780 | |
| 781 | # And then take whatever action is expected of us. |
| 782 | # This is a separate method to make life easier for |
| 783 | # subclasses to add new actions. |
| 784 | return self.take_action( |
| 785 | self.action, self.dest, opt, value, values, parser) |
| 786 | |
| 787 | def take_action(self, action, dest, opt, value, values, parser): |
| 788 | if action == "store": |
no test coverage detected