Opened 15 years ago
Closed 14 years ago
#15127 closed Bug (fixed)
form.fields is still tied to class variables
| Reported by: | Michael Nelson | Owned by: | nobody |
|---|---|---|---|
| Component: | Forms | Version: | dev |
| Severity: | Normal | Keywords: | |
| Cc: | wil@… | Triage Stage: | Ready for checkin |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description (last modified by )
From django.forms.forms.BaseForm.__init__, it seems the intention is that a form's self.fields should be safe to update
# The base_fields class attribute is the *class-wide* definition of # fields. Because a particular *instance* of the class might want to # alter self.fields, we create self.fields here by copying base_fields. # Instances should always modify self.fields; they should not modify # self.base_fields. self.fields = deepcopy(self.base_fields)
Yet
In [1]: from django import forms
In [5]: class MyForm(forms.Form):
title = forms.ChoiceField(choices=(('mr', 'Mr.'), ('mrs', 'Mrs.')))
...: def __init__(self, *args, **kwargs):
...: super(MyForm, self).__init__(*args, **kwargs)
...: self.fields['title'].choices += [('you', 'who')]
...:
In [7]: f1 = MyForm()
In [8]: f1.fields['title'].choices
Out[8]: [('mr', 'Mr.'), ('mrs', 'Mrs.'), ('you', 'who')]
In [9]: f2 = MyForm()
In [10]: f2.fields['title'].choices
Out[10]: [('mr', 'Mr.'), ('mrs', 'Mrs.'), ('you', 'who'), ('you', 'who')]
In [11]: f3 = MyForm()
In [12]: f3.fields['title'].choices
Out[12]:
[('mr', 'Mr.'),
('mrs', 'Mrs.'),
('you', 'who'),
('you', 'who'),
('you', 'who')]
In [17]: f3.base_fields['title']
Out[17]: <django.forms.fields.ChoiceField object at 0x26cc910>
In [18]: f3.fields['title']
Out[18]: <django.forms.fields.ChoiceField object at 0x26ccb10>
In [19]: f3.base_fields['title'].choices
Out[19]:
[('mr', 'Mr.'),
('mrs', 'Mrs.'),
('you', 'who'),
('you', 'who'),
('you', 'who')]
So it seems that the instance field is definitely a deep copy, but the attributes of are not. A friend then pointed out Field.__deepcopy__:
http://code.djangoproject.com/browser/django/trunk/django/forms/fields.py#L193
which explains why the attributes are shared, but not whether this affect is intentional.
Attachments (2)
Change History (9)
comment:1 by , 15 years ago
| Description: | modified (diff) |
|---|
comment:2 by , 15 years ago
| Triage Stage: | Unreviewed → Accepted |
|---|
comment:3 by , 15 years ago
| Severity: | → Normal |
|---|---|
| Type: | → Bug |
by , 14 years ago
| Attachment: | choicefield-deepcopy-v1.diff added |
|---|
comment:4 by , 14 years ago
| Cc: | added |
|---|---|
| Easy pickings: | unset |
| Has patch: | set |
| UI/UX: | unset |
Could someone review the patch I just attached?
by , 14 years ago
| Attachment: | 15127-form-field-choices-deepcopy.diff added |
|---|
comment:5 by , 14 years ago
| Triage Stage: | Accepted → Ready for checkin |
|---|
The patch looks good, thanks! I've just made the tests slightly more explicit ;)
deepcopy ChoiceField._choices with regression test