Home | History | Annotate | Download | only in python2.7

Lines Matching refs:retcode

118     retcode = call(["ls", "-l"])
261 retcode = call("mycmd" + " myarg", shell=True)
262 if retcode < 0:
263 print >>sys.stderr, "Child was terminated by signal", -retcode
265 print >>sys.stderr, "Child returned", retcode
281 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
283 retcode = call(["/bin/mycmd", "myarg"])
522 retcode = call(["ls", "-l"])
537 retcode = call(*popenargs, **kwargs)
538 if retcode:
542 raise CalledProcessError(retcode, cmd)
570 retcode = process.poll()
571 if retcode:
575 raise CalledProcessError(retcode, cmd, output=output)