asyncio: fix default for subprocess_exec (#9561)

This commit is contained in:
Jelle Zijlstra
2023-01-18 06:03:22 -08:00
committed by GitHub
parent eb4d17031f
commit aa4d6d87ae
7 changed files with 10 additions and 4 deletions

View File

@@ -542,7 +542,7 @@ class AbstractEventLoop:
stdout: int | IO[Any] | None = -1,
stderr: int | IO[Any] | None = -1,
universal_newlines: Literal[False] = ...,
shell: Literal[True] = ...,
shell: Literal[False] = ...,
bufsize: Literal[0] = ...,
encoding: None = ...,
errors: None = ...,