Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1711)

Unified Diff: subprocess2.py

Issue 582933002: Make check_output of subprocess2 compatible with Python's subprocess. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: subprocess2.py
diff --git a/subprocess2.py b/subprocess2.py
index 9f547a63bbb84939d9ff29010abee0a99e23cb7d..16c2aac770921479efe4dd74a705ff6b6578ce78 100644
--- a/subprocess2.py
+++ b/subprocess2.py
@@ -33,8 +33,9 @@ SUBPROCESS_CLEANUP_HACKED = False
class CalledProcessError(subprocess.CalledProcessError):
"""Augment the standard exception with more data."""
- def __init__(self, returncode, cmd, cwd, stdout, stderr):
- super(CalledProcessError, self).__init__(returncode, cmd)
+ def __init__(self, returncode, cmd, cwd, stdout, stderr, output=None):
+ # output kwarg is for compatability with python's subprocess.check_output
+ super(CalledProcessError, self).__init__(returncode, cmd, output=output)
iannucci 2014/09/18 20:59:03 why not just output=stdout
tandrii(chromium) 2014/09/18 22:23:05 Done.
self.stdout = stdout
iannucci 2014/09/18 20:59:03 and then say `self.stdout = self.output` for compa
tandrii(chromium) 2014/09/18 22:23:05 Done.
self.stderr = stderr
self.cwd = cwd
@@ -475,7 +476,7 @@ def check_call_out(args, **kwargs):
out, returncode = communicate(args, **kwargs)
if returncode:
raise CalledProcessError(
- returncode, args, kwargs.get('cwd'), out[0], out[1])
+ returncode, args, kwargs.get('cwd'), out[0], out[1], output=out[0])
return out
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698