From: Berker Peksag <berker.peksag@gmail.com> Date: Fri, 29 Apr 2016 11:41:16 +0000 (+0300) Subject: Issue #26322: Document typing.Set, patch by Joseph Moran X-Git-Tag: v3.6.0a1~98^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d6fd8c9365980f106748e9d716e458ac352f32f;p=python Issue #26322: Document typing.Set, patch by Joseph Moran --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 89d4bba436..119af88e7e 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -431,9 +431,9 @@ The module defines the following classes, functions and decorators: def slice__to_4(vector: Sequence[T]) -> List[T]: return vector[0:4] -.. class:: AbstractSet(set, MutableSet[T]) +.. class:: Set(set, MutableSet[T]) - A generic version of :class:`collections.abc.Set`. + A generic version of :class:`builtins.set <set>`. .. class:: MappingView(Sized, Iterable[T_co])