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

Unified Diff: appengine/findit/crash/callstack_filters.py

Issue 1914113002: [Findit] Enable project classifier and component classifier (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Address comments and add tests. Created 4 years, 7 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: appengine/findit/crash/callstack_filters.py
diff --git a/appengine/findit/crash/callstack_filters.py b/appengine/findit/crash/callstack_filters.py
index 2ff2c693e1daf3855230e614619feb2991a6ba6f..e270806a9315310c130312d91db0d816c44422e5 100644
--- a/appengine/findit/crash/callstack_filters.py
+++ b/appengine/findit/crash/callstack_filters.py
@@ -6,7 +6,7 @@ import re
def FilterFramesBeforeSignature(callstack, signature):
- """Filter all the stack frames before the signature frame.
+ """Filters all the stack frames before the signature frame.
Note: The callstack is filtered in place.
"""
@@ -21,4 +21,5 @@ def FilterFramesBeforeSignature(callstack, signature):
if signature in frame.function:
signature_frame_index = index
+ print signature_frame_index
Martin Barbella 2016/05/10 06:00:41 Remove before landing.
Sharu Jiang 2016/05/12 23:58:00 Done.
callstack[:] = callstack[signature_frame_index:]

Powered by Google App Engine
This is Rietveld 408576698