[Python-checkins] cpython: Move versionadded directive to the top level, as we do in other files

eric.araujo python-checkins at python.org
Tue Aug 16 19:14:27 CEST 2011


http://hg.python.org/cpython/rev/785c01719c85
changeset:   71878:785c01719c85
user:        Éric Araujo <merwok at netwok.org>
date:        Tue Aug 16 19:10:24 2011 +0200
summary:
  Move versionadded directive to the top level, as we do in other files

files:
  Doc/library/collections.abc.rst |  5 +++--
  1 files changed, 3 insertions(+), 2 deletions(-)


diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst
--- a/Doc/library/collections.abc.rst
+++ b/Doc/library/collections.abc.rst
@@ -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 @@
 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:
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list