mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
tracemalloc.py: fix indentation
This commit is contained in:
parent
83db8fc3cc
commit
d81999a074
1 changed files with 4 additions and 4 deletions
|
@ -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():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue