summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-04-18 05:25:54 (GMT)
committerGeorg Brandl <georg@python.org>2016-04-18 05:25:54 (GMT)
commitd2be07e1fdc7e18338efe5c6e1c95eb44f8dd869 (patch)
treeeb79ab949aa2ba9cdf0d94da246d1389388057bd /Doc/library
parenta648339595d738fad40692a04e7ff9863d22dd3d (diff)
downloadcpython-d2be07e1fdc7e18338efe5c6e1c95eb44f8dd869.zip
cpython-d2be07e1fdc7e18338efe5c6e1c95eb44f8dd869.tar.gz
cpython-d2be07e1fdc7e18338efe5c6e1c95eb44f8dd869.tar.bz2
#25987: add versionadded to Reversible.
Diffstat (limited to 'Doc/library')
-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 608641b..bbd0eda 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