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

Unified Diff: subprocess2.py

Issue 14643009: Don't discard stderr. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Remove debugging print statements Created 7 years, 8 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 | tests/subprocess2_test.py » ('j') | 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 364aace886009ab18322524f6e8f8bc6f97a03d3..1f9c6c99e365ad8a958acae8511d10d0b99aaaf0 100644
--- a/subprocess2.py
+++ b/subprocess2.py
@@ -355,7 +355,6 @@ class Popen(subprocess.Popen):
self._tee_threads(input)
if stdout is not None:
stdout = ''.join(stdout)
- stderr = None
if stderr is not None:
stderr = ''.join(stderr)
return (stdout, stderr)
« no previous file with comments | « no previous file | tests/subprocess2_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698