From: Éric Araujo Date: Tue, 16 Aug 2011 17:10:24 +0000 (+0200) Subject: Move versionadded directive to the top level, as we do in other files X-Git-Tag: v3.3.0a1~1691^2~2^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b389eec44093720270da77fe8e628c1df7f31cf3;p=thirdparty%2FPython%2Fcpython.git Move versionadded directive to the top level, as we do in other files --- diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index dbd89ae209e3..9873489c103b 100644 --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -6,6 +6,9 @@ .. moduleauthor:: Raymond Hettinger .. sectionauthor:: Raymond Hettinger +.. 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 ` 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: