diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2017-02-15 19:38:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-15 19:38:48 (GMT) |
commit | 7224a049b88ed37c510861528147e0db54911bb7 (patch) | |
tree | a86717ae5ed502166347343eca8e8a8215ba1bac /Doc | |
parent | 1e8cc88a48a049b064f786bb4b97ea60b70dc504 (diff) | |
download | cpython-7224a049b88ed37c510861528147e0db54911bb7.zip cpython-7224a049b88ed37c510861528147e0db54911bb7.tar.gz cpython-7224a049b88ed37c510861528147e0db54911bb7.tar.bz2 |
bpo-29481: add versionadded 3.6.1 to typing.Deque docs (#108)
(cherry picked from commit 7e147f1ddb8233964ff0981e6b64fc12edac99aa)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/typing.rst | 2 |
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`. |