From 5dd1ab098296b99c6f225a58d75a69d445fb0e7d Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Sun, 12 Feb 2017 22:45:20 -0500 Subject: [PATCH] DOC: mark which version typing.Deque added --- Doc/library/typing.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 6c8982ba743526..d130e1759d8f59 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -574,6 +574,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`.