summaryrefslogtreecommitdiff
path: root/django/forms
diff options
context:
space:
mode:
authorMichael Angeletti <michael@angelettigroup.com>2015-02-22 22:06:41 -0500
committerTim Graham <timograham@gmail.com>2015-02-24 19:50:55 -0500
commit65441bbdb02427655869c42791a0bc5a9c631292 (patch)
treea13315b58f68dbd8374d3d91e9b6942442db2c69 /django/forms
parentd298b1ba5043eaa40f3f4bebe3c7634b359ba34b (diff)
Fixed #24391 -- Made BoundField.value() cache callable values.
Diffstat (limited to 'django/forms')
-rw-r--r--django/forms/forms.py24
1 files changed, 17 insertions, 7 deletions
diff --git a/django/forms/forms.py b/django/forms/forms.py
index 64405079d8..761dd93afa 100644
--- a/django/forms/forms.py
+++ b/django/forms/forms.py
@@ -29,6 +29,8 @@ def pretty_name(name):
return ''
return name.replace('_', ' ').capitalize()
+UNSET = object()
+
class DeclarativeFieldsMetaclass(MediaDefiningClass):
"""
@@ -93,6 +95,7 @@ class BaseForm(object):
# Instances should always modify self.fields; they should not modify
# self.base_fields.
self.fields = copy.deepcopy(self.base_fields)
+ self._bound_fields_cache = {}
def __str__(self):
return self.as_table()
@@ -120,7 +123,9 @@ class BaseForm(object):
except KeyError:
raise KeyError(
"Key %r not found in '%s'" % (name, self.__class__.__name__))
- return BoundField(self, field, name)
+ if name not in self._bound_fields_cache:
+ self._bound_fields_cache[name] = BoundField(self, field, name)
+ return self._bound_fields_cache[name]
@property
def errors(self):
@@ -486,6 +491,7 @@ class BoundField(object):
else:
self.label = self.field.label
self.help_text = field.help_text or ''
+ self._initial_value = UNSET
def __str__(self):
"""Renders this field as an HTML widget."""
@@ -580,12 +586,16 @@ class BoundField(object):
if not self.form.is_bound:
data = self.form.initial.get(self.name, self.field.initial)
if callable(data):
- data = data()
- # If this is an auto-generated default date, nix the
- # microseconds for standardized handling. See #22502.
- if (isinstance(data, (datetime.datetime, datetime.time)) and
- not getattr(self.field.widget, 'supports_microseconds', True)):
- data = data.replace(microsecond=0)
+ if self._initial_value is not UNSET:
+ data = self._initial_value
+ else:
+ data = data()
+ # If this is an auto-generated default date, nix the
+ # microseconds for standardized handling. See #22502.
+ if (isinstance(data, (datetime.datetime, datetime.time)) and
+ not getattr(self.field.widget, 'supports_microseconds', True)):
+ data = data.replace(microsecond=0)
+ self._initial_value = data
else:
data = self.field.bound_data(
self.data, self.form.initial.get(self.name, self.field.initial)