cpython: d263dcfd9bb6 (original) (raw)
Mercurial > cpython
changeset 101182:d263dcfd9bb6
Issue #26322: Document typing.Set, patch by Joseph Moran [#26322]
Berker Peksag berker.peksag@gmail.com | |
---|---|
date | Fri, 29 Apr 2016 14:41:41 +0300 |
parents | 988d1c742609(current diff)6cd8cd14f648(diff) |
children | 3be61137280a |
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 @@ -430,9 +430,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])