diff options
author | Raymond Hettinger <python@rcn.com> | 2017-01-17 06:43:43 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2017-01-17 06:43:43 (GMT) |
commit | e12c313f5e2690d61f99f2fb6a98e7992ff7e12c (patch) | |
tree | 8f700a2759da96dc844c899e0c066eaa2e0ddb6b /Doc | |
parent | 741c45adabc23c65ea85ff817c3266665ccf76e1 (diff) | |
parent | 80490525e0e9c08860b0de0c416dbe71c6593af7 (diff) | |
download | cpython-e12c313f5e2690d61f99f2fb6a98e7992ff7e12c.zip cpython-e12c313f5e2690d61f99f2fb6a98e7992ff7e12c.tar.gz cpython-e12c313f5e2690d61f99f2fb6a98e7992ff7e12c.tar.bz2 |
merge
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/typing.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 2bac6f8..fd6bded 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -563,6 +563,10 @@ The module defines the following classes, functions and decorators: As a shorthand for this type, :class:`bytes` can be used to annotate arguments of any of the types mentioned above. +.. class:: Deque(deque, MutableSequence[T]) + + A generic version of :class:`collections.deque`. + .. class:: List(list, MutableSequence[T]) Generic version of :class:`list`. |