From e503ad4594a180b083c6234afad358d40d988e35 Mon Sep 17 00:00:00 2001 From: Joshua Smock Date: Mon, 17 Oct 2016 12:11:10 -0700 Subject: [PATCH] Allow any kind of item in the list returned by select (#615) --- stdlib/3/select.pyi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stdlib/3/select.pyi b/stdlib/3/select.pyi index fcede9fce..83446f03d 100644 --- a/stdlib/3/select.pyi +++ b/stdlib/3/select.pyi @@ -22,6 +22,6 @@ class poll: def poll(self, timeout: int = ...) -> List[Tuple[int, int]]: ... def select(rlist: Sequence, wlist: Sequence, xlist: Sequence, - timeout: float = ...) -> Tuple[List[int], - List[int], - List[int]]: ... + timeout: float = ...) -> Tuple[List[Any], + List[Any], + List[Any]]: ...