Validate the given value against all of self.fields, which is a list of Field instances.
(self, value)
| 1041 | self.fields = fields |
| 1042 | |
| 1043 | def clean(self, value): |
| 1044 | """ |
| 1045 | Validate the given value against all of self.fields, which is a |
| 1046 | list of Field instances. |
| 1047 | """ |
| 1048 | super().clean(value) |
| 1049 | for field in self.fields: |
| 1050 | value = field.clean(value) |
| 1051 | return value |
| 1052 | |
| 1053 | |
| 1054 | class MultiValueField(Field): |