mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 12:24:45 +00:00
Fix bugs
This commit is contained in:
parent
afcf21787d
commit
ae15f95191
7 changed files with 159 additions and 57 deletions
|
@ -1 +1,14 @@
|
|||
.run!: (args: Str or [Str; _], shell := Bool) => NoneType
|
||||
.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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue