]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Move versionadded directive to the top level, as we do in other files
authorÉric Araujo <merwok@netwok.org>
Tue, 16 Aug 2011 17:10:24 +0000 (19:10 +0200)
committerÉric Araujo <merwok@netwok.org>
Tue, 16 Aug 2011 17:10:24 +0000 (19:10 +0200)
Doc/library/collections.abc.rst

index dbd89ae209e354d387374f390c10263ca9fed052..9873489c103b6a2d3dd07bda3d626c6d1af36e58 100644 (file)
@@ -6,6 +6,9 @@
 .. moduleauthor:: Raymond Hettinger <python at rcn.com>
 .. sectionauthor:: Raymond Hettinger <python at rcn.com>
 
+.. versionadded:: 3.3
+   Formerly, this module was part of the :mod:`collections` module.
+
 .. testsetup:: *
 
    from collections import *
@@ -20,8 +23,6 @@ This module provides :term:`abstract base classes <abstract base class>` that
 can be used to test whether a class provides a particular interface; for
 example, whether it is hashable or whether it is a mapping.
 
-.. versionchanged:: 3.3
-   Formerly, this module was part of the :mod:`collections` module.
 
 .. _collections-abstract-base-classes: