cpython: 6cd8cd14f648 (original) (raw)
Mercurial > cpython
changeset 101181:6cd8cd14f648 3.5
Issue #26322: Document typing.Set, patch by Joseph Moran [#26322]
Berker Peksag berker.peksag@gmail.com | |
---|---|
date | Fri, 29 Apr 2016 14:41:16 +0300 |
parents | 54663cbd0de1 |
children | d263dcfd9bb6 110dfb244b27 |
files | Doc/library/typing.rst |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-)[+] [-] Doc/library/typing.rst 4 |
line wrap: on
line diff
--- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -431,9 +431,9 @@ The module defines the following classes def slice__to_4(vector: Sequence[T]) -> List[T]: return vector[0:4] -.. class:: AbstractSet(set, MutableSet[T]) +.. class:: Set(set, MutableSet[T])