diff options
author | Guido van Rossum <guido@python.org> | 2016-11-24 19:56:40 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2016-11-24 19:56:40 (GMT) |
commit | b3c5dc912daaec0f1f64dd05f5e49bfe9755fdb9 (patch) | |
tree | 65319659e0b3c6c40bb303324fd5763be7b85a51 | |
parent | 7e45b5c63c872c5a9b0b2666a1076e1845b87714 (diff) | |
parent | a860286eab61271c300958146c026ee008e57988 (diff) | |
download | cpython-b3c5dc912daaec0f1f64dd05f5e49bfe9755fdb9.zip cpython-b3c5dc912daaec0f1f64dd05f5e49bfe9755fdb9.tar.gz cpython-b3c5dc912daaec0f1f64dd05f5e49bfe9755fdb9.tar.bz2 |
Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber) (3.5->3.6)
-rw-r--r-- | Doc/library/typing.rst | 4 |
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`. |