Ticket #5471: newforms_fields_py.patch
File newforms_fields_py.patch, 526 bytes (added by , 17 years ago) |
---|
-
django/newforms/fields.py
435 435 def clean(self, value): 436 436 "Returns a Python boolean object." 437 437 super(BooleanField, self).clean(value) 438 # Check for '0' which is what as_hidden will give us for False 439 if value == '0': 440 return False 438 441 return bool(value) 439 442 440 443 class NullBooleanField(BooleanField):