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

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


https://hg.python.org/cpython/rev/00bfe5bd3553
changeset:   105355:00bfe5bd3553
parent:      105352:971ac6837060
parent:      105353:5d83b6a9b568
user:        Guido van Rossum <guido at python.org>
date:        Thu Nov 24 11:57:05 2016 -0800
summary:
  Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber) (3.6->3.7)

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
@@ -584,6 +584,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