mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-28 06:36:54 +08:00
Allow any kind of item in the list returned by select (#615)
This commit is contained in:
committed by
Guido van Rossum
parent
8865baf840
commit
e503ad4594
@@ -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]]: ...
|
||||
|
||||
Reference in New Issue
Block a user