summaryrefslogtreecommitdiff
path: root/docs/ref/forms
diff options
context:
space:
mode:
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