Chromium Code Reviews| 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:] |