Ticket #1207: dont-clobber-new_data.patch
File dont-clobber-new_data.patch, 476 bytes (added by , 19 years ago) |
---|
-
django/forms/__init__.py
99 99 expected to deal with invalid input. 100 100 """ 101 101 for field in self.fields: 102 field.convert_post_data(new_data) 102 if field.field_name in new_data: 103 field.convert_post_data(new_data) 103 104 104 105 class FormWrapper: 105 106 """