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

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


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

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