Haxe 3.4 - subprocess.Popen
Popen

Popen
पैकेज python.lib.subprocess
अजगरHaxe 3.4 - subprocess.Popen
पैकेज python.lib.subprocess
अजगर
new
(
args:
Array
<
String
>,
bufsize:
Int
= 0,
?executable:
String
,
?stdin:
Int
,
?stdout:
Int
,
?stderr:
Int
,
?preexec_fn:
Void
‑>
Void
,
close_fds:
Bool
= false,
shell:
Bool
= false,
?cwd:
String
,
?env:
Dict
<
String
,
String
>,
universal_newlines:
Bool
= false,
?startupinfo:
StartupInfo
,
creationflags:
Int
= 0
)
pid
:
Int
returncode
:
Int
stderr
:
FileIO
stdin
:
FileIO
stdout
:
FileIO
communicate
(
?input:
Bytes
,
?timeout:
Int
):
Tuple2
<
Bytes
,
Bytes
>
kill
():
Void
poll
():
Null
<
Int
>
terminate
():
Void
wait
(
?timeout:
Int
):
Null
<
Int
>
static
inline
create
(
args:
EitherType
<
String
,
Array
<
String
>>,
o:
PopenOptions
):
Popen