Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber)

This commit is contained in:
Guido van Rossum 2016-11-24 11:56:00 -08:00
parent f0888cd734
commit a860286eab
1 changed files with 4 additions and 0 deletions

View File

@ -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`.