From fd0c3656907f06d860ed7bb07daa1ae2c5bf9e11 Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Tue, 23 Feb 2010 14:20:35 +0000 Subject: [PATCH] [1.1.X] Fixed #11860. Changed NullBooleanSelect's _has_changed method to repect differences between None and False. Backport of [12523] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12524 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/forms/widgets.py | 10 +++++++--- tests/regressiontests/forms/widgets.py | 14 ++++++++++++++ 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/django/forms/widgets.py b/django/forms/widgets.py index 47ed684fbb..a759581205 100644 --- a/django/forms/widgets.py +++ b/django/forms/widgets.py @@ -454,9 +454,13 @@ class NullBooleanSelect(Select): False: False}.get(value, None) def _has_changed(self, initial, data): - # Sometimes data or initial could be None or u'' which should be the - # same thing as False. - return bool(initial) != bool(data) + # For a NullBooleanSelect, None (unknown) and False (No) + # are not the same + if initial is not None: + initial = bool(initial) + if data is not None: + data = bool(data) + return initial != data class SelectMultiple(Select): def render(self, name, value, attrs=None, choices=()): diff --git a/tests/regressiontests/forms/widgets.py b/tests/regressiontests/forms/widgets.py index dceb899cda..204f4d0573 100644 --- a/tests/regressiontests/forms/widgets.py +++ b/tests/regressiontests/forms/widgets.py @@ -530,6 +530,20 @@ Choices can be nested one level in order to create HTML optgroups: +>>> w._has_changed(False, None) +True +>>> w._has_changed(None, False) +True +>>> w._has_changed(None, None) +False +>>> w._has_changed(False, False) +False +>>> w._has_changed(True, False) +True +>>> w._has_changed(True, None) +True +>>> w._has_changed(True, True) +False """ + \ r""" # [This concatenation is to keep the string below the jython's 32K limit].