summaryrefslogtreecommitdiff
path: root/Doc/library/collections.abc.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-04-18 07:25:54 +0200
committerGeorg Brandl <georg@python.org>2016-04-18 07:25:54 +0200
commitab699544fbe6e967e499e5da7a16516e31878309 (patch)
tree7fa811be076aa667886361ce039cb8fbeda4c96b /Doc/library/collections.abc.rst
parent8b796383dd9e8605de4816151cdc831ddc7509cc (diff)
downloadcpython-ab699544fbe6e967e499e5da7a16516e31878309.tar.gz
#25987: add versionadded to Reversible.
Diffstat (limited to 'Doc/library/collections.abc.rst')
-rw-r--r--Doc/library/collections.abc.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst
index 608641bad3..bbd0eda145 100644
--- a/Doc/library/collections.abc.rst
+++ b/Doc/library/collections.abc.rst
@@ -112,6 +112,8 @@ ABC Inherits from Abstract Methods Mixin
ABC for classes that provide the :meth:`__reversed__` method.
+ .. versionadded:: 3.6
+
.. class:: Generator
ABC for generator classes that implement the protocol defined in