diff --git a/stdlib/3/subprocess.pyi b/stdlib/3/subprocess.pyi index 49928b396..57585adbf 100644 --- a/stdlib/3/subprocess.pyi +++ b/stdlib/3/subprocess.pyi @@ -832,9 +832,9 @@ class CalledProcessError(Exception): class Popen(Generic[AnyStr]): args: _CMD - stdin: IO[AnyStr] - stdout: IO[AnyStr] - stderr: IO[AnyStr] + stdin: Optional[IO[AnyStr]] + stdout: Optional[IO[AnyStr]] + stderr: Optional[IO[AnyStr]] pid: int returncode: int