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

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

Issue 2562623004: Making CallStack immutable, so it can be hashable (Closed)
Patch Set: Addressing nits Created 4 years 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 | « no previous file | appengine/findit/crash/changelist_classifier.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/crash/callstack_filters.py
diff --git a/appengine/findit/crash/callstack_filters.py b/appengine/findit/crash/callstack_filters.py
index 8873f3cd99bc33de49f0b5548ff1275b7bca3e32..5ca3a1116437008a8b789c362ed3ce2204f53d3a 100644
--- a/appengine/findit/crash/callstack_filters.py
+++ b/appengine/findit/crash/callstack_filters.py
@@ -30,4 +30,4 @@ def FilterInlineFunctionFrames(callstack):
return CallStack(callstack.priority,
callstack.format_type,
callstack.language_type,
- filter(_IsNonInlineFunctionFrame, callstack))
+ filter(_IsNonInlineFunctionFrame, callstack.frames))
« no previous file with comments | « no previous file | appengine/findit/crash/changelist_classifier.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698