1
0
mirror of https://github.com/django/django.git synced 2025-03-10 01:12:53 +00:00

Removed BaseForm._raw_value().

Unused since efb0100ee67931329f17bc9988ecd5f0619cea14.
This commit is contained in:
Tim Graham 2015-08-21 12:14:12 -04:00
parent d3bc86ec11
commit 97ac77e544

View File

@ -297,15 +297,6 @@ class BaseForm(object):
"""
return self.errors.get(NON_FIELD_ERRORS, self.error_class(error_class='nonfield'))
def _raw_value(self, fieldname):
"""
Returns the raw_value for a particular field name. This is just a
convenient wrapper around widget.value_from_datadict.
"""
field = self.fields[fieldname]
prefix = self.add_prefix(fieldname)
return field.widget.value_from_datadict(self.data, self.files, prefix)
def add_error(self, field, error):
"""
Update the content of `self._errors`.