summaryrefslogtreecommitdiff
path: root/django/forms
diff options
context:
space:
mode:
Diffstat (limited to 'django/forms')
-rw-r--r--django/forms/fields.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/django/forms/fields.py b/django/forms/fields.py
index ab746e4971..9070963607 100644
--- a/django/forms/fields.py
+++ b/django/forms/fields.py
@@ -753,13 +753,15 @@ class NullBooleanField(BooleanField):
def to_python(self, value):
"""
Explicitly checks for the string 'True' and 'False', which is what a
- hidden field will submit for True and False, and for '1' and '0', which
- is what a RadioField will submit. Unlike the Booleanfield we need to
- explicitly check for True, because we are not using the bool() function
+ hidden field will submit for True and False, for 'true' and 'false',
+ which are likely to be returned by JavaScript serializations of forms,
+ and for '1' and '0', which is what a RadioField will submit. Unlike
+ the Booleanfield we need to explicitly check for True, because we are
+ not using the bool() function
"""
- if value in (True, 'True', '1'):
+ if value in (True, 'True', 'true', '1'):
return True
- elif value in (False, 'False', '0'):
+ elif value in (False, 'False', 'false', '0'):
return False
else:
return None