Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(6) | Call(6) | Derive(0) | Import(0)
src/p/l/plexnet-HEAD/third_party/generic/pypy/py/path/local/local.py plexnet(Download)
ret = proc.wait() if ret != 0: raise py.process.cmdexec.Error(ret, ret, str(self), stdout, stderr,) return stdout
src/n/u/nupic-linux64-HEAD/lib/python2.6/site-packages/py/_path/local.py nupic-linux64(Download)
if py.builtin._isbytes(stderr): stderr = py.builtin._totext(stderr, sys.getdefaultencoding()) raise py.process.cmdexec.Error(ret, ret, str(self), stdout, stderr,) return stdout
src/p/y/py-1.4.20/py/_path/local.py py(Download)
if py.builtin._isbytes(stderr): stderr = py.builtin._totext(stderr, sys.getdefaultencoding()) raise py.process.cmdexec.Error(ret, ret, str(self), stdout, stderr,) return stdout
src/e/x/execnet-1.2.0/testing/test_serializer.py execnet(Download)
ret = popen.returncode if ret: raise py.process.cmdexec.Error(ret, ret, str(self.executable), stdout, stderr) return stdout
ret = popen.returncode if ret: raise py.process.cmdexec.Error(ret, ret, str(self.executable), stdout, stderr) return [s.decode("ascii") for s in stdout.splitlines()]
src/d/e/devpi-server-1.2.2/test_devpi_server/test_gendeploy.py devpi-server(Download)
def sysexec_raise(x, y): raise py.process.cmdexec.Error(1, 2, x, "", "") monkeypatch.setattr(py.path.local, "sysexec", sysexec_raise) tw = py.io.TerminalWriter()