diff options
author | Guido van Rossum <guido@python.org> | 2016-11-24 19:57:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2016-11-24 19:57:05 (GMT) |
commit | 596a515074e58587926eeab3ca77b4c6b3a2f01f (patch) | |
tree | 642b9a0437a45e5bee0883fb4888ec52996a5553 /Doc | |
parent | 87d89d9714ebd6a33b00b50e8d454fec489cfe13 (diff) | |
parent | a860286eab61271c300958146c026ee008e57988 (diff) | |
download | cpython-596a515074e58587926eeab3ca77b4c6b3a2f01f.zip cpython-596a515074e58587926eeab3ca77b4c6b3a2f01f.tar.gz cpython-596a515074e58587926eeab3ca77b4c6b3a2f01f.tar.bz2 |
Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber) (3.6->3.7)
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 16e7b83..2446b4b 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -584,6 +584,10 @@ The module defines the following classes, functions and decorators: A generic version of :class:`builtins.set <set>`. +.. class:: FrozenSet(frozenset, AbstractSet[T_co]) + + A generic version of :class:`builtins.frozenset <frozenset>`. + .. class:: MappingView(Sized, Iterable[T_co]) A generic version of :class:`collections.abc.MappingView`. |