diff options
author | Guido van Rossum <guido@python.org> | 2016-11-24 19:56:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2016-11-24 19:56:00 (GMT) |
commit | a860286eab61271c300958146c026ee008e57988 (patch) | |
tree | b63887a0677dceb8f41d739cb3b8e5bcca096de0 /Doc | |
parent | f0888cd7340c3b714c8ec4540db652f8c30b9011 (diff) | |
download | cpython-a860286eab61271c300958146c026ee008e57988.zip cpython-a860286eab61271c300958146c026ee008e57988.tar.gz cpython-a860286eab61271c300958146c026ee008e57988.tar.bz2 |
Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber)
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 dde705e..0316f01 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -578,6 +578,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`. |