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

Unified Diff: subprocess2.py

Issue 8749005: Silence pylint on Mac OSX 10.6 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 1 month 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 | « my_reviews.py ('k') | testing_support/fake_repos.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 e65186e769cd5998bc509491ba9fa70fc5053717..99eebcc1ae89f8e47e8f73f0e6e43ca5c6cac3d5 100644
--- a/subprocess2.py
+++ b/subprocess2.py
@@ -182,7 +182,8 @@ class Popen(subprocess.Popen):
fix('stderr')
self.start = time.time()
-
+ # Silence pylint on MacOSX
+ self.returncode = None
try:
super(Popen, self).__init__(args, **kwargs)
except OSError, e:
« no previous file with comments | « my_reviews.py ('k') | testing_support/fake_repos.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698