Add args attribute to subprocess.Popen (#1267)

This commit is contained in:
Sergey Passichenko
2017-05-14 13:41:38 -07:00
committed by Jelle Zijlstra
parent c2e6a6f670
commit 6207eb8cde

View File

@@ -266,6 +266,8 @@ class CalledProcessError(Exception):
stderr: Optional[_TXT] = ...) -> None: ...
class Popen:
if sys.version_info >= (3, 3):
args = ... # type: _CMD
stdin = ... # type: IO[Any]
stdout = ... # type: IO[Any]
stderr = ... # type: IO[Any]