diff options
| author | Andrew Godwin <andrew@aeracode.org> | 2012-09-07 15:43:28 -0400 |
|---|---|---|
| committer | Andrew Godwin <andrew@aeracode.org> | 2012-09-07 15:43:28 -0400 |
| commit | 828d691f62814edf3e93d981c0f991a48781fb79 (patch) | |
| tree | 10aeb64ecaa08678aebad730deac73dbb5646d94 /docs/ref/forms | |
| parent | ca9c3cd39fade827cced1b5198dd37bb80c208b0 (diff) | |
| parent | 5999eb42eb6dad6a74c43eb6e9d96ac368ad97b4 (diff) | |
Merge branch 'master' into schema-alteration
Diffstat (limited to 'docs/ref/forms')
| -rw-r--r-- | docs/ref/forms/validation.txt | 5 | ||||
| -rw-r--r-- | docs/ref/forms/widgets.txt | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt index 95424d0cd0..1af32da875 100644 --- a/docs/ref/forms/validation.txt +++ b/docs/ref/forms/validation.txt @@ -70,9 +70,8 @@ overridden: formfield-specific piece of validation and, possibly, cleaning/normalizing the data. - Just like the general field ``clean()`` method, above, this method - should return the cleaned data, regardless of whether it changed - anything or not. + This method should return the cleaned value obtained from cleaned_data, + regardless of whether it changed anything or not. * The Form subclass's ``clean()`` method. This method can perform any validation that requires access to multiple fields from the form at diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt index fb7657349a..eab314a4cd 100644 --- a/docs/ref/forms/widgets.txt +++ b/docs/ref/forms/widgets.txt @@ -310,6 +310,10 @@ commonly used groups of widgets: A callable that takes the value of the CheckBoxInput and returns ``True`` if the checkbox should be checked for that value. + .. versionchanged:: 1.5 + Exceptions from ``check_test`` used to be silenced by its caller, + this is no longer the case, they will propagate upwards. + ``Select`` ~~~~~~~~~~ |
