stdlib: Run stubdefaulter on Linux for 3.9 (#9663)

This commit is contained in:
Jelle Zijlstra
2023-02-02 16:39:22 -08:00
committed by GitHub
parent 100cd62373
commit 5b24c7bb41
8 changed files with 39 additions and 36 deletions

View File

@@ -107,14 +107,14 @@ if sys.platform != "win32":
) -> Server: ...
else:
async def open_unix_connection(
path: StrPath | None = ..., *, loop: events.AbstractEventLoop | None = ..., limit: int = ..., **kwds: Any
path: StrPath | None = None, *, loop: events.AbstractEventLoop | None = None, limit: int = 65536, **kwds: Any
) -> tuple[StreamReader, StreamWriter]: ...
async def start_unix_server(
client_connected_cb: _ClientConnectedCallback,
path: StrPath | None = ...,
path: StrPath | None = None,
*,
loop: events.AbstractEventLoop | None = ...,
limit: int = ...,
loop: events.AbstractEventLoop | None = None,
limit: int = 65536,
**kwds: Any,
) -> Server: ...