summaryrefslogtreecommitdiff
path: root/docs/ref/contrib
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-12-31 08:27:32 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 20:52:01 -0500
commit75cf9b5ac031feb8f94271c9906157c921a14520 (patch)
tree51061671e97c44a71f080329497f5afb49b95585 /docs/ref/contrib
parentd67a46e10459858b681176a3e1f8c6bca39d2ac7 (diff)
Refs #13110 -- Removed SyndicationFeed.add_item()'s enclosure argument.
Per deprecation timeline.
Diffstat (limited to 'docs/ref/contrib')
-rw-r--r--docs/ref/contrib/syndication.txt8
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/ref/contrib/syndication.txt b/docs/ref/contrib/syndication.txt
index 25851c94a3..3552f70f29 100644
--- a/docs/ref/contrib/syndication.txt
+++ b/docs/ref/contrib/syndication.txt
@@ -963,7 +963,6 @@ They share this interface:
* ``pubdate``
* ``comments``
* ``unique_id``
- * ``enclosure``
* ``enclosures``
* ``categories``
* ``item_copyright``
@@ -976,17 +975,10 @@ They share this interface:
* ``pubdate`` should be a Python :class:`~datetime.datetime` object.
* ``updateddate`` should be a Python :class:`~datetime.datetime` object.
- * ``enclosure`` should be an instance of
- :class:`django.utils.feedgenerator.Enclosure`.
* ``enclosures`` should be a list of
:class:`django.utils.feedgenerator.Enclosure` instances.
* ``categories`` should be a sequence of Unicode objects.
- .. deprecated:: 1.9
-
- The ``enclosure`` keyword argument is deprecated in favor of the
- ``enclosures`` keyword argument.
-
:meth:`.SyndicationFeed.write`
Outputs the feed in the given encoding to outfile, which is a file-like object.