diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-16 17:10:24 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-16 17:10:24 (GMT) |
commit | b389eec44093720270da77fe8e628c1df7f31cf3 (patch) | |
tree | c38bdec453af8eaccdf81910ed4c9cbb9499c8b9 /Doc | |
parent | e5905a9413ed786b322b5adb4820eea12b3233a9 (diff) | |
download | cpython-b389eec44093720270da77fe8e628c1df7f31cf3.zip cpython-b389eec44093720270da77fe8e628c1df7f31cf3.tar.gz cpython-b389eec44093720270da77fe8e628c1df7f31cf3.tar.bz2 |
Move versionadded directive to the top level, as we do in other files
Diffstat (limited to 'Doc')
-rw-r--r-- | 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 index dbd89ae..9873489 100644 --- 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 @@ 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: |