File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -452,11 +452,20 @@ def clean(self):
452452 if e .type != EventType .FREE :
453453 continue
454454 object_info : OutputObjectInfo = e .object_info
455- trace_pc_ids = [e .pc_id [trace_index ] for trace_index in object_info .trace_index ]
455+ trace_pc_ids = [
456+ e .pc_id [trace_index ] for trace_index in object_info .trace_index
457+ ]
456458
457459 good = [
458- i for i in range (len (trace_pc_ids )) if trace_pc_ids
459- if '::~' in self .strtab [self .frame_table .func [self .frame_table .offsets [trace_pc_ids [i ] + 1 ] - 1 ]]
460+ i
461+ for i in range (len (trace_pc_ids ))
462+ if trace_pc_ids
463+ if "::~"
464+ in self .strtab [
465+ self .frame_table .func [
466+ self .frame_table .offsets [trace_pc_ids [i ] + 1 ] - 1
467+ ]
468+ ]
460469 ]
461470 e .object_info .clean (good )
462471
You can’t perform that action at this time.
0 commit comments