diff --git a/django/forms/fields.py b/django/forms/fields.py
index 621d380..d7b6ebb 100644
a
|
b
|
class NullBooleanField(BooleanField):
|
743 | 743 | return initial != data |
744 | 744 | |
745 | 745 | |
| 746 | class CallableChoiceIterator(object): |
| 747 | def __init__(self, callme, field): |
| 748 | self.callme = callme |
| 749 | self.field = field |
| 750 | |
| 751 | def __iter__(self): |
| 752 | for e in self.callme(self.field): |
| 753 | yield e |
| 754 | |
746 | 755 | class ChoiceField(Field): |
747 | 756 | widget = Select |
748 | 757 | default_error_messages = { |
… |
… |
class ChoiceField(Field):
|
757 | 766 | |
758 | 767 | def __deepcopy__(self, memo): |
759 | 768 | result = super(ChoiceField, self).__deepcopy__(memo) |
760 | | result._choices = copy.deepcopy(self._choices, memo) |
| 769 | result._set_choices(copy.deepcopy(self._choices, memo)) |
761 | 770 | return result |
762 | 771 | |
763 | 772 | def _get_choices(self): |
… |
… |
class ChoiceField(Field):
|
765 | 774 | |
766 | 775 | def _set_choices(self, value): |
767 | 776 | # Setting choices also sets the choices on the widget. |
768 | | # choices can be any iterable, but we call list() on it because |
769 | | # it will be consumed more than once. |
770 | | self._choices = self.widget.choices = list(value) |
| 777 | if callable(value): |
| 778 | value = CallableChoiceIterator(value, self) |
| 779 | else: |
| 780 | # choices can be any iterable, but we call list() on it because |
| 781 | # it will be consumed more than once. |
| 782 | value = list(value) |
| 783 | |
| 784 | self._choices = self.widget.choices = value |
771 | 785 | |
772 | 786 | choices = property(_get_choices, _set_choices) |
773 | 787 | |
diff --git a/tests/regressiontests/forms/tests/fields.py b/tests/regressiontests/forms/tests/fields.py
index 3fe2cd2..bdce0ba 100644
a
|
b
|
def fix_os_paths(x):
|
49 | 49 | else: |
50 | 50 | return x |
51 | 51 | |
52 | | |
53 | 52 | class FieldsTests(SimpleTestCase): |
54 | 53 | |
55 | 54 | def assertWidgetRendersTo(self, field, to): |
… |
… |
class FieldsTests(SimpleTestCase):
|
893 | 892 | f = TypedChoiceField(choices=[(1, "+1"), (-1, "-1")], coerce=int, required=False, empty_value=None) |
894 | 893 | self.assertEqual(None, f.clean('')) |
895 | 894 | |
| 895 | def test_choicefield_callable(self): |
| 896 | choices = lambda field: [('J', 'John'), ('P', 'Paul')] |
| 897 | f = ChoiceField(choices=choices) |
| 898 | self.assertEqual(u'J', f.clean('J')) |
| 899 | |
| 900 | def test_choicefield_callable_may_evaluate_to_different_values(self): |
| 901 | choices = [] |
| 902 | def choices_as_callable(field): |
| 903 | return choices |
| 904 | |
| 905 | class ChoiceFieldForm(Form): |
| 906 | choicefield = ChoiceField(choices=choices_as_callable) |
| 907 | |
| 908 | choices = [('J', 'John'), ('P', 'Paul')] |
| 909 | form = ChoiceFieldForm() |
| 910 | self.assertTrue("John" in form.as_p()) |
| 911 | |
| 912 | choices = [('M', 'Marie'),] |
| 913 | form = ChoiceFieldForm() |
| 914 | self.assertTrue("Marie" in form.as_p()) |
| 915 | |
896 | 916 | # NullBooleanField ############################################################ |
897 | 917 | |
898 | 918 | def test_nullbooleanfield_1(self): |