summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
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`.