summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2016-11-24 11:56:00 -0800
committerGuido van Rossum <guido@python.org>2016-11-24 11:56:00 -0800
commit461030a1f005e5768916fb37382d80f93107469b (patch)
treecf061673f9538fd14d67489c313febb03e913281 /Doc
parent905996f03f13f8e37662e5a98e9823a80c4af499 (diff)
downloadcpython-461030a1f005e5768916fb37382d80f93107469b.tar.gz
Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/typing.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index dde705e680..0316f01958 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`.