Lines Matching defs:call
31 call(...): Runs a command, waits for it to complete, then returns
33 check_call(...): Same as call() but raises CalledProcessError()
63 __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput",
381 def call(*popenargs, timeout=None, **kwargs):
387 retcode = call(["ls", "-l"])
394 # We don't call p.wait() again as p.__exit__ does that for us.
404 The arguments are the same as for the call function. Example:
408 retcode = call(*popenargs, **kwargs)
555 # read() call run on child threads, with the timeout
567 # We don't call process.wait() as .__exit__ does that for us.
827 # finished a waitpid() call.
1107 # an interrupted .wait() or .communicate() call, do so here
2194 # and the kill() call.