Lines Matching defs:CalledProcessError
33 check_call(...): Same as call() but raises CalledProcessError()
64 "getoutput", "check_output", "run", "CalledProcessError", "DEVNULL",
126 class CalledProcessError(SubprocessError):
401 CalledProcessError. The CalledProcessError object will have the
413 raise CalledProcessError(retcode, cmd)
420 If the exit code was non-zero it raises a CalledProcessError. The
421 CalledProcessError object will have the return code in the returncode
500 """Raise CalledProcessError if the exit code is non-zero."""
502 raise CalledProcessError(self.returncode, self.args, self.stdout,
516 CalledProcessError. The CalledProcessError object will have the return code
571 raise CalledProcessError(retcode, process.args,
674 except CalledProcessError as ex: