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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py

Issue 2256793002: Make docstrings more consistent using format-webkitpy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make indentation of final quote based on parse tree (indentation prior to docstring node) rather th… Created 4 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py
index eb63764b530cdf3d819d3a817b26b7bcd2b62c15..cfe05da98904cc7c47af154fa9bd5801ced20592 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py
@@ -126,7 +126,8 @@ class Executive(object):
def kill_process(self, pid):
"""Attempts to kill the given pid.
- Will fail silently if pid does not exist or insufficient permissions."""
+ Will fail silently if pid does not exist or insufficient permissions.
+ """
if sys.platform == "win32":
# We only use taskkill.exe on windows (not cygwin) because subprocess.pid
# is a CYGWIN pid and taskkill.exe expects a windows pid.
@@ -332,7 +333,8 @@ class Executive(object):
def command_for_printing(self, args):
"""Returns a print-ready string representing command args.
- The string should be copy/paste ready for execution in a shell."""
+ The string should be copy/paste ready for execution in a shell.
+ """
args = self._stringify_args(args)
escaped_args = []
for arg in args:

Powered by Google App Engine
This is Rietveld 408576698