summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 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`.