diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2018-01-12 05:53:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-12 05:53:49 (GMT) |
commit | 02556fbade5e1e864dd09d5768a8dbbf5b3a0dac (patch) | |
tree | 14aa995e97221042d271e1c431397e7bb9dee2b0 /Doc | |
parent | 782d6fe4434381c50e0c7ec94a1ef9c6debbc333 (diff) | |
download | cpython-02556fbade5e1e864dd09d5768a8dbbf5b3a0dac.zip cpython-02556fbade5e1e864dd09d5768a8dbbf5b3a0dac.tar.gz cpython-02556fbade5e1e864dd09d5768a8dbbf5b3a0dac.tar.bz2 |
bpo-32467: Let collections.abc.ValuesView inherit from Collection (#5152)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/collections.abc.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index 6015453..2a3fb14 100644 --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -87,7 +87,8 @@ ABC Inherits from Abstract Methods Mixin :class:`Set` ``__iter__`` :class:`KeysView` :class:`MappingView`, ``__contains__``, :class:`Set` ``__iter__`` -:class:`ValuesView` :class:`MappingView` ``__contains__``, ``__iter__`` +:class:`ValuesView` :class:`MappingView`, ``__contains__``, ``__iter__`` + :class:`Collection` :class:`Awaitable` ``__await__`` :class:`Coroutine` :class:`Awaitable` ``send``, ``throw`` ``close`` :class:`AsyncIterable` ``__aiter__`` |