diff options
| author | Marc Tamlyn <marc.tamlyn@gmail.com> | 2013-10-15 04:22:34 -0700 |
|---|---|---|
| committer | Marc Tamlyn <marc.tamlyn@gmail.com> | 2013-10-15 04:22:34 -0700 |
| commit | ce823d37109208644ec8a9acf2dfa915c73c42eb (patch) | |
| tree | ee633a34de063fe3bd61cd217b564753df0eb9e9 /docs/ref | |
| parent | ed8919cbcb83302ea71572f5c7d5e6796bb21afa (diff) | |
| parent | b16dd1fe019b38d0dcdf4a400e9377fb06b33178 (diff) | |
Merge pull request #1382 from loic/ticket19617
Fixed #19617 -- Refactored form metaclasses to support more inheritance scenarios.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/forms/api.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/ref/forms/api.txt b/docs/ref/forms/api.txt index 14092512dc..c15f748308 100644 --- a/docs/ref/forms/api.txt +++ b/docs/ref/forms/api.txt @@ -854,6 +854,13 @@ classes:: <li>Instrument: <input type="text" name="instrument" /></li> <li>Haircut type: <input type="text" name="haircut_type" /></li> +.. versionadded:: 1.7 + +* It's possible to opt-out from a ``Field`` inherited from a parent class by + shadowing it. While any non-``Field`` value works for this purpose, it's + recommended to use ``None`` to make it explicit that a field is being + nullified. + .. _form-prefix: Prefixes for forms |
