diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2017-02-15 19:39:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-15 19:39:37 (GMT) |
commit | bb53a27a5d56a4f33c3fc8eebb486b34808c92b7 (patch) | |
tree | 42ff905de6725d148661fd94b4428b941b09ccaf /Doc/library | |
parent | 1bfd33f5732ba5f6d15e99d88e45a62a9cc42542 (diff) | |
download | cpython-bb53a27a5d56a4f33c3fc8eebb486b34808c92b7.zip cpython-bb53a27a5d56a4f33c3fc8eebb486b34808c92b7.tar.gz cpython-bb53a27a5d56a4f33c3fc8eebb486b34808c92b7.tar.bz2 |
[cherry-pick for 3.5] bpo-29481: add versionadded 3.5.4 to typing.Deque docs (#109)
(cherry picked from commit 7e147f1ddb8233964ff0981e6b64fc12edac99aa)
Diffstat (limited to 'Doc/library')
-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 8da71b6..93ea4f9 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.5.4 + .. class:: List(list, MutableSequence[T]) Generic version of :class:`list`. |