Stdlib: add some very large integer defaults (#9651)

Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
Alex Waygood
2023-02-01 20:10:28 +00:00
committed by GitHub
parent 8000fbd386
commit 35172c7aab
4 changed files with 5 additions and 5 deletions

View File

@@ -42,7 +42,7 @@ if sys.platform == "win32":
) -> list[PipeServer]: ...
class IocpProactor:
def __init__(self, concurrency: int = ...) -> None: ...
def __init__(self, concurrency: int = 0xFFFFFFFF) -> None: ...
def __del__(self) -> None: ...
def set_loop(self, loop: events.AbstractEventLoop) -> None: ...
def select(self, timeout: int | None = None) -> list[futures.Future[Any]]: ...