From: Guido van Rossum Date: Thu, 24 Nov 2016 19:56:00 +0000 (-0800) Subject: Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber) X-Git-Tag: v3.6.0rc1~32^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a860286eab61271c300958146c026ee008e57988;p=thirdparty%2FPython%2Fcpython.git Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber) --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index dde705e680ca..0316f0195862 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 `. +.. class:: FrozenSet(frozenset, AbstractSet[T_co]) + + A generic version of :class:`builtins.frozenset `. + .. class:: MappingView(Sized, Iterable[T_co]) A generic version of :class:`collections.abc.MappingView`.