We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 820d3b9 commit aad4b18Copy full SHA for aad4b18
Lib/profiling/sampling/jsonl_collector.py
@@ -88,7 +88,7 @@ def export(self, filename):
88
"samples_total": self._samples_total,
89
},
90
"entries",
91
- self._iter_agg_entries(),
+ self._iter_final_agg_entries(),
92
)
93
self._write_message(output, self._build_end_record())
94
@@ -189,7 +189,7 @@ def _normalize_export_location(location):
189
normalized["end_col"] = end_col_offset
190
return normalized
191
192
- def _iter_agg_entries(self):
+ def _iter_final_agg_entries(self):
193
return [
194
{
195
"frame_id": frame_record["frame_id"],
0 commit comments