mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
committed by
Jukka Lehtosalo
parent
0d7a5374c5
commit
bc252d69ac
@@ -9,9 +9,9 @@ from types import TracebackType
|
||||
if sys.version_info >= (3, 5):
|
||||
class CompletedProcess:
|
||||
args = ... # type: Union[List, str]
|
||||
returncode = ... # type: int
|
||||
stdout = ... # type: Union[str, bytes]
|
||||
stderr = ... # type: Union[str, bytes]
|
||||
returncode = ... # type: int
|
||||
stdout = ... # type: Any
|
||||
stderr = ... # type: Union[str, bytes]
|
||||
def __init__(self, args: Union[List, str],
|
||||
returncode: int,
|
||||
stdout: Union[str, bytes],
|
||||
|
||||
Reference in New Issue
Block a user