summaryrefslogtreecommitdiffstats
path: root/Lib/tracemalloc.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-03-06 16:06:04 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-03-06 16:06:04 (GMT)
commitd81999a0742f3fc29c2ed9682c38799e6c45c831 (patch)
tree6cc4a6542a113ac2cc52c7fc37498c3109399bd0 /Lib/tracemalloc.py
parent83db8fc3cc9d0fafab450fd3e261377a813eb685 (diff)
downloadcpython-d81999a0742f3fc29c2ed9682c38799e6c45c831.zip
cpython-d81999a0742f3fc29c2ed9682c38799e6c45c831.tar.gz
cpython-d81999a0742f3fc29c2ed9682c38799e6c45c831.tar.bz2
tracemalloc.py: fix indentation
Diffstat (limited to 'Lib/tracemalloc.py')
-rw-r--r--Lib/tracemalloc.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/tracemalloc.py b/Lib/tracemalloc.py
index 6f0a234..dd73d05 100644
--- a/Lib/tracemalloc.py
+++ b/Lib/tracemalloc.py
@@ -119,12 +119,12 @@ def _compare_grouped_stats(old_group, new_group):
previous = old_group.pop(traceback, None)
if previous is not None:
stat = StatisticDiff(traceback,
- stat.size, stat.size - previous.size,
- stat.count, stat.count - previous.count)
+ stat.size, stat.size - previous.size,
+ stat.count, stat.count - previous.count)
else:
stat = StatisticDiff(traceback,
- stat.size, stat.size,
- stat.count, stat.count)
+ stat.size, stat.size,
+ stat.count, stat.count)
statistics.append(stat)
for traceback, stat in old_group.items():