This behaviour seems odd. Am I doing something wrong, or have I hit a bug ?
I'm expecting that changing the choices of f shouldn't affect f2.
I'm using 0.96.

class MyForm(forms.Form):
    x = forms.MultipleChoiceField()

 > f = MyForm()
 > f2 = MyForm()
 > f2.as_p()
u'<p><label for='id_x'>X:</label> <select multiple="multiple" name="x" 
id="id_x">\n</select></p>
 > f.choices = [('1','1')]
 > f2.as_p()
u'<p><label for='id_x'>X:</label> <select multiple="multiple" name="x" 
id="id_x">\n<option value="1">1</option></select></p>

Thanks,

Chris


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to