fix stubs for asyncio.BaseEventLoop.subprocess_exec (#13220)

This commit is contained in:
Stephen Morton
2024-12-25 14:25:39 -08:00
committed by GitHub
parent 0d4dd20b97
commit d8822689f7
2 changed files with 1 additions and 2 deletions

View File

@@ -452,6 +452,7 @@ class BaseEventLoop(AbstractEventLoop):
bufsize: Literal[0] = 0,
encoding: None = None,
errors: None = None,
text: Literal[False] | None = None,
**kwargs: Any,
) -> tuple[SubprocessTransport, _ProtocolT]: ...
def add_reader(self, fd: FileDescriptorLike, callback: Callable[[Unpack[_Ts]], Any], *args: Unpack[_Ts]) -> None: ...