Commit d81999a0 authored by Victor Stinner's avatar Victor Stinner

tracemalloc.py: fix indentation

parent 83db8fc3
...@@ -119,12 +119,12 @@ def _compare_grouped_stats(old_group, new_group): ...@@ -119,12 +119,12 @@ def _compare_grouped_stats(old_group, new_group):
previous = old_group.pop(traceback, None) previous = old_group.pop(traceback, None)
if previous is not None: if previous is not None:
stat = StatisticDiff(traceback, stat = StatisticDiff(traceback,
stat.size, stat.size - previous.size, stat.size, stat.size - previous.size,
stat.count, stat.count - previous.count) stat.count, stat.count - previous.count)
else: else:
stat = StatisticDiff(traceback, stat = StatisticDiff(traceback,
stat.size, stat.size, stat.size, stat.size,
stat.count, stat.count) stat.count, stat.count)
statistics.append(stat) statistics.append(stat)
for traceback, stat in old_group.items(): for traceback, stat in old_group.items():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment