From: Berker Peksag 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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5d6fd8c9365980f106748e9d716e458ac352f32f;p=thirdparty%2FPython%2Fcpython.git Issue #26322: Document typing.Set, patch by Joseph Moran --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 89d4bba43622..119af88e7e02 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 `. .. class:: MappingView(Sized, Iterable[T_co])