mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-27 19:59:07 +00:00
14 lines
426 B
Python
14 lines
426 B
Python
.CompletedProcess: ClassType
|
|
.CompletedProcess.args: Str or [Str; _]
|
|
.CompletedProcess.returncode: Int
|
|
.CompletedProcess.stdout: Bytes or NoneType
|
|
.CompletedProcess.stderr: Bytes or NoneType
|
|
|
|
.run!: (
|
|
args: Str or [Str; _],
|
|
stdin: File! or NoneType := NoneType,
|
|
stdout: File! or NoneType := NoneType,
|
|
stderr: File! or NoneType := NoneType,
|
|
capture_output := Bool,
|
|
shell := Bool,
|
|
) => .CompletedProcess
|