[Python-checkins] cpython (3.5): Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber)

guido.van.rossum python-checkins at python.org
Thu Nov 24 14:56:13 EST 2016


https://hg.python.org/cpython/rev/5d83b6a9b568
changeset:   105353:5d83b6a9b568
branch:      3.5
parent:      105346:f7aa200bed8d
user:        Guido van Rossum <guido at python.org>
date:        Thu Nov 24 11:56:00 2016 -0800
summary:
  Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber)

files:
  Doc/library/typing.rst |  4 ++++
  1 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -578,6 +578,10 @@
 
    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`.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list