|
__init__(self,
args,
bufsize=0,
executable=False,
stdin=False,
stdout=False,
stderr=False,
preexec_fn=False,
close_fds=False,
shell=False,
cwd=False,
env=False,
universal_newlines=False,
startupinfo=False,
creationflags=0)
Create new Popen instance. |
source code
|
|
|
|
|
|
|
|
|
_make_inheritable(self,
handle)
Return a duplicate of handle, which is inheritable |
source code
|
|
|
_find_w9xpopen(self)
Find and return absolut path to w9xpopen.exe |
source code
|
|
|
|
|
|
|
|
|
|
|
_execute_child(self,
args,
executable,
preexec_fn,
close_fds,
cwd,
env,
universal_newlines,
startupinfo,
creationflags,
shell,
p2cread,
p2cwrite,
c2pread,
c2pwrite,
errread,
errwrite)
Execute program (POSIX version) |
source code
|
|
|
|
|
poll(self,
_deadstate=False)
Check if child process has terminated. |
source code
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|