diff --git a/stdlib/3/subprocess.pyi b/stdlib/3/subprocess.pyi index 83d62cf9e..9b7921a31 100644 --- a/stdlib/3/subprocess.pyi +++ b/stdlib/3/subprocess.pyi @@ -29,7 +29,7 @@ class CalledProcessError(Exception): cmd = ... # type: str output = b'' # May be None - def __init__(self, returncode: int, cmd: str, output: Optional[str], + def __init__(self, returncode: int, cmd: str, output: Optional[str] = ..., stderr: Optional[str] = ...) -> None: ... class Popen: