Browse Source

Fix issue #27402: example for typing did not type-check.

pull/40/head
Guido van Rossum 10 years ago
parent
commit
457509826e
  1. 4
      Doc/library/typing.rst

4
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])

Loading…
Cancel
Save