Fixed #18934 - Removed versionadded/changed annotations for Django 1.3

This commit is contained in:
Tim Graham 2012-09-19 16:39:14 -04:00
parent e06b54391d
commit 837425b425
47 changed files with 23 additions and 346 deletions

View file

@ -658,8 +658,6 @@ those classes as an argument::
.. method:: BoundField.value()
.. versionadded:: 1.3
Use this method to render the raw value of this field as it would be rendered
by a ``Widget``::

View file

@ -704,8 +704,6 @@ For each field, we describe the default widget used if you don't specify
``TypedMultipleChoiceField``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. versionadded:: 1.3
.. class:: TypedMultipleChoiceField(**kwargs)
Just like a :class:`MultipleChoiceField`, except :class:`TypedMultipleChoiceField`

View file

@ -294,11 +294,6 @@ These widgets make use of the HTML elements ``input`` and ``textarea``.
Determines whether the widget will have a value filled in when the
form is re-displayed after a validation error (default is ``False``).
.. versionchanged:: 1.3
The default value for
:attr:`~PasswordInput.render_value` was
changed from ``True`` to ``False``
``HiddenInput``
~~~~~~~~~~~~~~~
@ -532,8 +527,6 @@ File upload widgets
.. class:: ClearableFileInput
.. versionadded:: 1.3
File upload input: ``<input type='file' ...>``, with an additional checkbox
input to clear the field's value, if the field is not required and has
initial data.