Allow any kind of item in the list returned by select (#615)

This commit is contained in:
Joshua Smock
2016-10-17 12:11:10 -07:00
committed by Guido van Rossum
parent 8865baf840
commit e503ad4594

View File

@@ -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]]: ...