From: Victor Stinner Date: Thu, 6 Mar 2014 16:06:04 +0000 (+0100) Subject: tracemalloc.py: fix indentation X-Git-Tag: v3.4.1rc1~233^2~136 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d81999a0742f3fc29c2ed9682c38799e6c45c831;p=thirdparty%2FPython%2Fcpython.git tracemalloc.py: fix indentation --- diff --git a/Lib/tracemalloc.py b/Lib/tracemalloc.py index 6f0a234244b4..dd73d053b409 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():