From 78becc570ded5e410e9a27a38829bba6d59c4e46 Mon Sep 17 00:00:00 2001 From: Mariatta Wijaya Date: Tue, 14 Feb 2017 20:24:41 -0800 Subject: [PATCH 1/2] bpo-29481: add versionadded 3.6.1 to typing.Deque docs (cherry picked from commit 7e147f1ddb8233964ff0981e6b64fc12edac99aa) --- Doc/library/typing.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 8da71b64a7922f..411a8f644eb466 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -561,6 +561,8 @@ The module defines the following classes, functions and decorators: A generic version of :class:`collections.deque`. + .. versionadded:: 3.6.1 + .. class:: List(list, MutableSequence[T]) Generic version of :class:`list`. From 8322902aef3baf0fb0207744674152a5a8558d19 Mon Sep 17 00:00:00 2001 From: Mariatta Wijaya Date: Tue, 14 Feb 2017 20:37:26 -0800 Subject: [PATCH 2/2] bpo-29481: add versionadded 3.5.4 to typing.Deque docs --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 411a8f644eb466..93ea4f9422997a 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -561,7 +561,7 @@ The module defines the following classes, functions and decorators: A generic version of :class:`collections.deque`. - .. versionadded:: 3.6.1 + .. versionadded:: 3.5.4 .. class:: List(list, MutableSequence[T])