From edab8dff3bdcfafb2a7210cc763477a964dcad28 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 28 Jun 2016 10:08:17 -0700 Subject: Fix issue #27402: example for typing did not type-check. --- Doc/library/typing.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Doc/library/typing.rst') diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 731e2eca16..317229de0c 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -428,8 +428,8 @@ The module defines the following classes, functions and decorators: def vec2(x: T, y: T) -> List[T]: return [x, y] - def slice__to_4(vector: Sequence[T]) -> List[T]: - return vector[0:4] + def keep_positives(vector: Sequence[T]) -> List[T]: + return [item for item in vector if item > 0] .. class:: Set(set, MutableSet[T]) -- cgit v1.2.1