# HG changeset patch # User Wheerd # Date 1479818304 -3600 # Tue Nov 22 13:38:24 2016 +0100 # Node ID f57c8cb65723ec61b7a0907556c1170b40fe0cef # Parent 19adf22d6a5b41c95023affafb2cbd2bc47d5ec1 Added FrozenSet to typing docs. diff -r 19adf22d6a5b -r f57c8cb65723 Doc/library/typing.rst --- a/Doc/library/typing.rst Tue Nov 22 13:10:02 2016 +0100 +++ b/Doc/library/typing.rst Tue Nov 22 13:38:24 2016 +0100 @@ -584,6 +584,10 @@ A generic version of :class:`builtins.set `. +.. class:: FrozenSet(frozenset, AbstractSet[T]) + + A generic version of :class:`builtins.frozenset `. + .. class:: MappingView(Sized, Iterable[T_co]) A generic version of :class:`collections.abc.MappingView`.