summaryrefslogtreecommitdiff
path: root/docs/ref/utils.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-26 15:39:52 -0500
committerTim Graham <timograham@gmail.com>2015-02-01 21:02:40 -0500
commitc79faae761659d51d58782dbd2b8058fb4668cfa (patch)
treea83649a302c53dd2d0ce9e0f50c4017b8b5da979 /docs/ref/utils.txt
parent0e6091249295b0e06aff2b1b4411819f94a1c529 (diff)
Removed versionadded/changed notes for 1.7.
Diffstat (limited to 'docs/ref/utils.txt')
-rw-r--r--docs/ref/utils.txt10
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index c82e55005e..166df30141 100644
--- a/docs/ref/utils.txt
+++ b/docs/ref/utils.txt
@@ -345,10 +345,6 @@ SyndicationFeed
objects except ``pubdate`` and ``updateddate``, which are ``datetime.datetime``
objects, and ``enclosure``, which is an instance of the ``Enclosure`` class.
- .. versionadded:: 1.7
-
- The optional ``updateddate`` argument was added.
-
.. method:: num_items()
.. method:: root_attributes()
@@ -742,8 +738,6 @@ Functions for working with Python modules.
.. function:: import_string(dotted_path)
- .. versionadded:: 1.7
-
Imports a dotted module path and returns the attribute/class designated by
the last name in the path. Raises ``ImportError`` if the import failed. For
example::
@@ -849,15 +843,11 @@ appropriate entities.
.. class:: FixedOffset(offset=None, name=None)
- .. versionadded:: 1.7
-
A :class:`~datetime.tzinfo` subclass modeling a fixed offset from UTC.
``offset`` is an integer number of minutes east of UTC.
.. function:: get_fixed_timezone(offset)
- .. versionadded:: 1.7
-
Returns a :class:`~datetime.tzinfo` instance that represents a time zone
with a fixed offset from UTC.