summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2013-11-18 18:24:56 +0100
committerClaude Paroz <claude@2xlibre.net>2013-11-18 18:24:56 +0100
commita0f3eeccf3d5a90f9914bfe20b15df05673ea59d (patch)
treeda91c208646cdef2a8f1dd535ab5bcd07d566a52 /docs/ref
parent4a00f132e0cc5246f7e7bd04b6d84a9d9ea4a0c1 (diff)
Fixed #21397 -- Re-added flexibility to TypedChoiceField coercion
Thanks Elec for the report and Simon Charette for the review.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/forms/fields.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt
index 81b65d04d4..f2cd122526 100644
--- a/docs/ref/forms/fields.txt
+++ b/docs/ref/forms/fields.txt
@@ -375,7 +375,9 @@ For each field, we describe the default widget used if you don't specify
A function that takes one argument and returns a coerced value. Examples
include the built-in ``int``, ``float``, ``bool`` and other types. Defaults
- to an identity function.
+ to an identity function. Note that coercion happens after input
+ validation, so it is possible to coerce to a value not present in
+ ``choices``.
.. attribute:: empty_value