MCPcopy
hub / github.com/django/django / clean

Method clean

django/forms/fields.py:941–943  ·  view source on GitHub ↗
(self, value)

Source from the content-addressed store, hash-verified

939 return value
940
941 def clean(self, value):
942 value = super().clean(value)
943 return self._coerce(value)
944
945
946class MultipleChoiceField(ChoiceField):

Calls 2

_coerceMethod · 0.95
cleanMethod · 0.45