summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-02-15 19:37:18 (GMT)
committerGitHub <noreply@github.com>2017-02-15 19:37:18 (GMT)
commit36da1c3589e1bc4246cccf6bd0094a110416a43a (patch)
tree26cd8beb7ed3f0e3d323c2d8d737340588704b4e /Doc/library
parentf15fa87e5a66c0000f63be5065ddee4a52d5660f (diff)
downloadcpython-36da1c3589e1bc4246cccf6bd0094a110416a43a.zip
cpython-36da1c3589e1bc4246cccf6bd0094a110416a43a.tar.gz
cpython-36da1c3589e1bc4246cccf6bd0094a110416a43a.tar.bz2
bpo-29481: add versionadded 3.6.1 to typing.Deque docs (#107)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/typing.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 6c8982b..d130e17 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`.