summaryrefslogtreecommitdiff
path: root/docs/ref/forms
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-02 10:25:57 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 20:52:05 -0500
commite27e4c03399f610e0db1fb9b881095d762fda2b7 (patch)
tree11bd3fc4e762fad072ef29c0498daab3cba49554 /docs/ref/forms
parent401c5b2e42bf9134d9221f446765dd0777306f0b (diff)
Removed versionadded/changed annotations for 1.10.
Diffstat (limited to 'docs/ref/forms')
-rw-r--r--docs/ref/forms/api.txt2
-rw-r--r--docs/ref/forms/widgets.txt4
2 files changed, 0 insertions, 6 deletions
diff --git a/docs/ref/forms/api.txt b/docs/ref/forms/api.txt
index c74cfaed48..1c4185156d 100644
--- a/docs/ref/forms/api.txt
+++ b/docs/ref/forms/api.txt
@@ -711,8 +711,6 @@ using the ``label_suffix`` parameter to
.. attribute:: Form.use_required_attribute
-.. versionadded:: 1.10
-
When set to ``True`` (the default), required form fields will have the
``required`` HTML attribute.
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index 2b9cf489f1..210e5ce93c 100644
--- a/docs/ref/forms/widgets.txt
+++ b/docs/ref/forms/widgets.txt
@@ -291,8 +291,6 @@ foundation for custom widgets.
.. method:: value_omitted_from_data(data, files, name)
- .. versionadded:: 1.10.2
-
Given ``data`` and ``files`` dictionaries and this widget's name,
returns whether or not there's data or files for the widget.
@@ -307,8 +305,6 @@ foundation for custom widgets.
.. method:: use_required_attribute(initial)
- .. versionadded:: 1.10.1
-
Given a form field's ``initial`` value, returns whether or not the
widget can be rendered with the ``required`` HTML attribute. Forms use
this method along with :attr:`Field.required