[Python-checkins] cpython (3.5): Issue #26322: Document typing.Set, patch by Joseph Moran

berker.peksag python-checkins at python.org
Fri Apr 29 07:41:44 EDT 2016


https://hg.python.org/cpython/rev/6cd8cd14f648
changeset:   101181:6cd8cd14f648
branch:      3.5
parent:      101176:54663cbd0de1
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Fri Apr 29 14:41:16 2016 +0300
summary:
  Issue #26322: Document typing.Set, patch by Joseph Moran

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


diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -431,9 +431,9 @@
       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])
 

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


More information about the Python-checkins mailing list