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

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


https://hg.python.org/cpython/rev/d263dcfd9bb6
changeset:   101182:d263dcfd9bb6
parent:      101180:988d1c742609
parent:      101181:6cd8cd14f648
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Fri Apr 29 14:41:41 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
@@ -430,9 +430,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