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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/system/stack_utils.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/stack_utils.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/stack_utils.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/stack_utils.py
index 664c665cec3b3270ad0d87bae7e25c7f566e841f..882c2807fcfb99880dc789b6d656ff70ec9ba2cd 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/stack_utils.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/stack_utils.py
@@ -44,7 +44,8 @@ def log_thread_state(logger, name, thread_id, msg=''):
def _find_thread_stack(thread_id):
"""Returns a stack object that can be used to dump a stack trace for
- the given thread id (or None if the id is not found)."""
+ the given thread id (or None if the id is not found).
+ """
for tid, stack in sys._current_frames().items():
if tid == thread_id:
return stack

Powered by Google App Engine
This is Rietveld 408576698